-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.9 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.9 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
{
"name": "react-zero-ui-monorepo",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"workspaces": [
"packages/*"
],
"packageManager": "pnpm@10.13.1+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad",
"references": [
{
"path": "packages/core"
},
{
"path": "packages/cli"
}
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"reset": "git clean -fdx && pnpm install --frozen-lockfile && pnpm prepack:core && pnpm i-tarball",
"bootstrap": "pnpm install --frozen-lockfile && pnpm build && pnpm prepack:core && pnpm i-tarball",
"build": "cd packages/core && pnpm build",
"test": "cd packages/core && pnpm test:all",
"prepack:core": "pnpm -F @react-zero-ui/core pack --pack-destination ./dist",
"i-tarball": "node scripts/install-local-tarball.js",
"test:vite": "cd packages/core && pnpm test:vite",
"test:next": "cd packages/core && pnpm test:next",
"test:integration": "cd packages/core && pnpm test:integration",
"test:unit": "cd packages/core && pnpm test:unit",
"test:cli": "cd packages/core && pnpm test:cli",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit --project tsconfig.base.json",
"size": "npx esbuild ./packages/core/dist/index.js --bundle --minify --format=esm --external:react --define:process.env.NODE_ENV='\"production\"' | gzip -c | wc -c",
"build-output": "npx esbuild ./packages/core/dist/index.js --bundle --minify --format=esm --external:react --define:process.env.NODE_ENV='\"production\"'"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^24.0.13",
"esbuild": "^0.25.6",
"eslint": "^9.30.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.6.2",
"release-please": "^17.1.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}