Skip to content

Commit d6e525f

Browse files
authored
fix: remove unused part of script (#981)
1 parent 7d47e90 commit d6e525f

File tree

1 file changed

+114
-106
lines changed

1 file changed

+114
-106
lines changed

package.json

Lines changed: 114 additions & 106 deletions
Original file line numberDiff line numberDiff line change
@@ -1,108 +1,116 @@
11
{
2-
"name": "@react-native-menu/menu",
3-
"version": "1.1.6",
4-
"description": "UIMenu component for react-native",
5-
"main": "lib/commonjs/index",
6-
"module": "lib/module/index",
7-
"types": "lib/typescript/src/index.d.ts",
8-
"react-native": "src/index",
9-
"source": "src/index",
10-
"files": [
11-
"src",
12-
"lib",
13-
"android",
14-
"ios",
15-
"cpp",
16-
"react-native-menu.podspec",
17-
"!lib/typescript/example",
18-
"!**/__tests__",
19-
"!**/__fixtures__",
20-
"!**/__mocks__"
21-
],
22-
"scripts": {
23-
"android": "react-native run-android",
24-
"bootstrap": "yarn && yarn pods",
25-
"format": "yarn biome format --write .",
26-
"ios": "react-native run-ios",
27-
"lint": "yarn biome lint --write .",
28-
"pods": "cd example && pod-install --quiet",
29-
"prepare": "bob build",
30-
"release": "release-it",
31-
"start": "react-native start",
32-
"test": "jest",
33-
"typescript": "tsc --noEmit"
34-
},
35-
"keywords": ["react-native", "ios", "android"],
36-
"repository": "https://github.com/react-native-menu/menu",
37-
"author": "Jesse Katsumata <[email protected]> (https://github.com/Naturalclar)",
38-
"license": "MIT",
39-
"bugs": {
40-
"url": "https://github.com/react-native-menu/menu/issues"
41-
},
42-
"homepage": "https://github.com/react-native-menu/menu#readme",
43-
"devDependencies": {
44-
"@biomejs/biome": "1.9.4",
45-
"@callstack/react-native-visionos": "^0.73.0",
46-
"@react-native/babel-preset": "^0.76.1",
47-
"@react-native/metro-config": "0.76.2",
48-
"@release-it/conventional-changelog": "^9.0.1",
49-
"@rnx-kit/metro-config": "^2.0.0",
50-
"@types/jest": "^29.1.2",
51-
"@types/react": "^18.2.2",
52-
"@types/react-native": "0.73.0",
53-
"jest": "^29.2.1",
54-
"pod-install": "^0.3.2",
55-
"react": "18.2.0",
56-
"react-native": "^0.73.0",
57-
"react-native-builder-bob": "^0.32.1",
58-
"react-native-test-app": "^4.0.4",
59-
"release-it": "^17.2.0",
60-
"typescript": "5.6.3"
61-
},
62-
"peerDependencies": {
63-
"react": "*",
64-
"react-native": "*"
65-
},
66-
"jest": {
67-
"preset": "react-native",
68-
"modulePathIgnorePatterns": [
69-
"<rootDir>/example/node_modules",
70-
"<rootDir>/lib/"
71-
]
72-
},
73-
"release-it": {
74-
"git": {
75-
"commitMessage": "chore: release ${version}",
76-
"tagName": "v${version}"
77-
},
78-
"npm": {
79-
"publish": true
80-
},
81-
"github": {
82-
"release": true
83-
},
84-
"plugins": {
85-
"@release-it/conventional-changelog": {
86-
"preset": "angular"
87-
}
88-
}
89-
},
90-
"react-native-builder-bob": {
91-
"source": "src",
92-
"output": "lib",
93-
"targets": ["commonjs", "module", "typescript"]
94-
},
95-
"publishConfig": {
96-
"access": "public"
97-
},
98-
"volta": {
99-
"node": "20.10.0",
100-
"yarn": "1.22.21"
101-
},
102-
"codegenConfig": {
103-
"name": "RNMenuViewSpec",
104-
"type": "components",
105-
"jsSrcsDir": "src"
106-
},
107-
"packageManager": "[email protected]"
2+
"name": "@react-native-menu/menu",
3+
"version": "1.1.6",
4+
"description": "UIMenu component for react-native",
5+
"main": "lib/commonjs/index",
6+
"module": "lib/module/index",
7+
"types": "lib/typescript/src/index.d.ts",
8+
"react-native": "src/index",
9+
"source": "src/index",
10+
"files": [
11+
"src",
12+
"lib",
13+
"android",
14+
"ios",
15+
"cpp",
16+
"react-native-menu.podspec",
17+
"!lib/typescript/example",
18+
"!**/__tests__",
19+
"!**/__fixtures__",
20+
"!**/__mocks__"
21+
],
22+
"scripts": {
23+
"android": "react-native run-android",
24+
"bootstrap": "yarn && yarn pods",
25+
"format": "biome format --write .",
26+
"ios": "react-native run-ios",
27+
"lint": "biome lint --write .",
28+
"pods": "cd example && pod-install --quiet",
29+
"prepare": "bob build",
30+
"release": "release-it",
31+
"start": "react-native start",
32+
"test": "jest",
33+
"typescript": "tsc --noEmit"
34+
},
35+
"keywords": [
36+
"react-native",
37+
"ios",
38+
"android"
39+
],
40+
"repository": "https://github.com/react-native-menu/menu",
41+
"author": "Jesse Katsumata <[email protected]> (https://github.com/Naturalclar)",
42+
"license": "MIT",
43+
"bugs": {
44+
"url": "https://github.com/react-native-menu/menu/issues"
45+
},
46+
"homepage": "https://github.com/react-native-menu/menu#readme",
47+
"devDependencies": {
48+
"@biomejs/biome": "1.9.4",
49+
"@callstack/react-native-visionos": "^0.73.0",
50+
"@react-native/babel-preset": "^0.76.1",
51+
"@react-native/metro-config": "0.76.2",
52+
"@release-it/conventional-changelog": "^9.0.1",
53+
"@rnx-kit/metro-config": "^2.0.0",
54+
"@types/jest": "^29.1.2",
55+
"@types/react": "^18.2.2",
56+
"@types/react-native": "0.73.0",
57+
"jest": "^29.2.1",
58+
"pod-install": "^0.3.2",
59+
"react": "18.2.0",
60+
"react-native": "^0.73.0",
61+
"react-native-builder-bob": "^0.32.1",
62+
"react-native-test-app": "^4.0.4",
63+
"release-it": "^17.2.0",
64+
"typescript": "5.6.3"
65+
},
66+
"peerDependencies": {
67+
"react": "*",
68+
"react-native": "*"
69+
},
70+
"jest": {
71+
"preset": "react-native",
72+
"modulePathIgnorePatterns": [
73+
"<rootDir>/example/node_modules",
74+
"<rootDir>/lib/"
75+
]
76+
},
77+
"release-it": {
78+
"git": {
79+
"commitMessage": "chore: release ${version}",
80+
"tagName": "v${version}"
81+
},
82+
"npm": {
83+
"publish": true
84+
},
85+
"github": {
86+
"release": true
87+
},
88+
"plugins": {
89+
"@release-it/conventional-changelog": {
90+
"preset": "angular"
91+
}
92+
}
93+
},
94+
"react-native-builder-bob": {
95+
"source": "src",
96+
"output": "lib",
97+
"targets": [
98+
"commonjs",
99+
"module",
100+
"typescript"
101+
]
102+
},
103+
"publishConfig": {
104+
"access": "public"
105+
},
106+
"volta": {
107+
"node": "20.10.0",
108+
"yarn": "1.22.21"
109+
},
110+
"codegenConfig": {
111+
"name": "RNMenuViewSpec",
112+
"type": "components",
113+
"jsSrcsDir": "src"
114+
},
115+
"packageManager": "[email protected]"
108116
}

0 commit comments

Comments
 (0)