-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.1 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
{
"name": "rnrepo",
"version": "1.0.0",
"description": "Build system for React Native libraries",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"builder": "bun run packages/builder",
"scheduler": "bun run packages/scheduler",
"publisher": "bun run packages/publisher",
"validate": "bun run packages/config/src/validate.ts",
"lint-gradle-client": "./packages/build-tools/gradle-plugin/gradlew -p packages/build-tools/gradle-plugin spotlessCheck -q --no-daemon",
"lint-ts": "eslint . --ext .ts,.tsx",
"test-gradle-client": "./packages/build-tools/gradle-plugin/gradlew -p packages/build-tools/gradle-plugin test --info --no-daemon"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.1",
"@eslint/json": "^0.14.0",
"@types/node": "^24.0.4",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.46.4"
},
"dependencies": {
"commander": "^13.1.0",
"semver": "^7.7.4",
"zx": "^8.6.0"
}
}