-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 956 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 956 Bytes
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
{
"name": "csdx",
"version": "1.0.0",
"devDependencies": {
"husky": "^9.1.7",
"pnpm": "^10.28.0"
},
"engines": {
"node": ">=18.0.0"
},
"private": true,
"scripts": {
"clean:packages": "pnpm -r --filter './packages/*' run clean",
"build": "pnpm -r --filter './packages/*' run build",
"test": "pnpm -r --filter './packages/*' run test",
"prepack": "pnpm -r --filter './packages/*' run prepack",
"bootstrap": "pnpm install",
"clean:modules": "rm -rf node_modules packages/**/node_modules",
"clean:lock": "rm -f pnpm-lock.yaml",
"clean:all": "pnpm store prune && rm -rf node_modules && pnpm run clean:packages",
"setup": "pnpm run clean:all && pnpm run bootstrap && pnpm run build",
"prepare": "npx husky && chmod +x .husky/pre-commit",
"update:lockfile": "pnpm install --lockfile-only"
},
"license": "MIT",
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
]
}