-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
57 lines (57 loc) · 1.97 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
{
"name": "react-native-stylex",
"version": "4.2.0",
"main": "index.js",
"types": "index.d.ts",
"repository": "git@github.com:retyui/react-native-stylex.git",
"author": "David <4661784+retyui@users.noreply.github.com>",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc",
"postbuild": "mkdir lib/makeUseStyles && cp src/makeUseStyles/* lib/makeUseStyles && rm -rf lib/**/*test.* && prettier --write lib/**/*.{js,ts}",
"clean-publish": "yarn test && yarn build && node ./node_modules/clean-publish/clear-package-json.js package.json > lib/package.json && cp CHANGELOG.md LICENSE README.md lib",
"publish-next": "yarn clean-publish && cd lib && npm publish --tag next",
"presize": "yarn build",
"postinstall": "rm -rf node_modules/@types/node node_modules/@types/yauzl node_modules/@types/graceful-fs",
"lint": "eslint './src/*.{js,ts,tsx}' --quiet",
"test": "jest --coverage",
"size": "size-limit",
"ci": "yarn lint && yarn test && yarn size"
},
"peerDependencies": {
"react": ">=16.4.0",
"react-native": ">=0.59.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@size-limit/preset-app": "^11.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.45",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"clean-publish": "^4.2.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-native": "^0.73.0",
"react-native-dark-mode": "^0.2.2",
"react-native-safe-area-context": "^4.8.1",
"react-native-test-app": "^2.5.34",
"react-test-renderer": "^18.2.0",
"size-limit": "^11.0.1",
"typescript": "^5.3.3"
}
}