generated from cjinhuo/mono-sdk-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.97 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.97 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
65
66
67
68
69
70
71
72
{
"name": "mono",
"version": "0.0.1",
"private": true,
"description": "the best monorepo",
"workspaces": [
"packages/*",
"utils/*",
"app/*"
],
"scripts": {
"commit": "git add . && git czg",
"esm": "pnpm --parallel esm",
"watch:esm": "pnpm --parallel --stream watch:esm",
"build:rust": "cd ./agent && ./build.sh",
"build": "pnpm --parallel build && pnpm run build:rust",
"test": "pnpm --parallel test",
"web:dev": "pnpm --filter @mono/react-19 dev",
"clean": "shx rm -rf packages/**/*.tsbuildinfo && shx rm -rf ./{packages,app}/*/{esm,dist}",
"clean:node_module": "rm -rf ./node_modules && rm -rf ./{packages,app,e2e}/**/node_modules",
"postinstall": "husky install",
"preinstall": "npx only-allow pnpm"
},
"engines": {
"node": ">=20",
"pnpm": ">=10"
},
"author": "cjinhuo",
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@changesets/cli": "^2.29.5",
"@commitlint/config-conventional": "^19.2.2",
"@mono/tsconfig": "workspace:^",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-html": "^1.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"czg": "^1.12.0",
"debug": "^4.3.6",
"fast-glob": "^3.3.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.8",
"npm-run-all": "^4.1.5",
"nx": "^21.2.1",
"rollup": "^4.44.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-sizes": "^1.0.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.12.0",
"shx": "^0.4.0",
"ts-jest": "^29.2.4",
"tslib": "^2.6.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@rollup/plugin-babel": "^6.0.3",
"cac": "^6.7.14",
"execa": "^6.1.0",
"minimist": "^1.2.8",
"rollup-plugin-dts": "^5.3.0"
}
}