-
Notifications
You must be signed in to change notification settings - Fork 84
/
package.json
87 lines (87 loc) · 2.51 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "twrnc",
"version": "4.6.0",
"description": "simple, expressive API for tailwindcss + react-native",
"author": "Jared Henderson <[email protected]>",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"main": "dist/cjs/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/esm/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./create": {
"types": "./dist/esm/create.d.ts",
"import": "./dist/esm/create.js",
"require": "./dist/cjs/create.js"
}
},
"typesVersions": {
"*": {
"create": [
"./dist/esm/create.d.ts"
]
}
},
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:clear-cache": "jest --clearCache",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"ts:check": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"compile": "npm run compile:esm && npm run compile:cjs",
"compile:esm": "tsc",
"compile:cjs": "tsc --project tsconfig.cjs.json",
"prepublishOnly": "npm run compile",
"npub:precheck": "npm run lint && npm run format:check && npm run ts:check && npm run test"
},
"dependencies": {
"tailwindcss": ">=2.0.0"
},
"peerDependencies": {
"react-native": ">=0.62.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.55",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^18.0.7",
"@types/tailwindcss": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.66.2",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-native": "^0.73.4",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"homepage": "https://github.com/jaredh159/tailwind-react-native-classnames",
"repository": {
"type": "git",
"url": "https://github.com/jaredh159/tailwind-react-native-classnames.git"
},
"bugs": {
"url": "https://github.com/jaredh159/tailwind-react-native-classnames/issues"
},
"keywords": [
"tailwind",
"tailwindcss",
"react-native",
"classnames"
]
}