-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.28 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.28 KB
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
{
"name": "react-native-stylex",
"version": "5.0.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": {
"before-build": "rm -rf lib",
"build": "yarn before-build && tsc && yarn after-build",
"after-build": "mkdir lib/makeUseStyles && cp src/makeUseStyles/* lib/makeUseStyles && rm -rf lib/**/*test.* && prettier --write lib/**/*.{js,ts}",
"clean-publish": "yarn test && yarn build && rm -rf lib/makeUseStyles/test-type.js && 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",
"lint": "eslint './src/**/*.{js,ts,tsx}' --quiet",
"test": "jest --coverage",
"size": "yarn build && size-limit",
"ci": "yarn lint && yarn test && yarn size"
},
"peerDependencies": {
"react": ">=19.0.0",
"react-native": ">=0.59.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-native": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@react-native/babel-preset": "^0.84.1",
"@react-native/eslint-config": "^0.84.1",
"@size-limit/preset-app": "^12.0.1",
"@testing-library/react-native": "^13.3.3",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/eslint-plugin-jsx-a11y": "^6",
"@types/jest": "^30.0.0",
"@types/react": "^19.2.14",
"clean-publish": "^6.0.5",
"eslint": "^10.1.0",
"eslint-plugin-jest": "^29.15.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-testing-library": "^7.16.2",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-native": "^0.84.1",
"react-native-safe-area-context": "^5.7.0",
"react-native-test-app": "^5.1.0",
"react-test-renderer": "^19.2.4",
"size-limit": "^12.0.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.2"
},
"packageManager": "yarn@4.13.0"
}