-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.51 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.51 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
{
"name": "@clawdentity/root",
"private": true,
"packageManager": "pnpm@10.23.0",
"engines": {
"node": "22.x",
"pnpm": "10.23.0"
},
"scripts": {
"prepare": "husky",
"check:file-size": "node ./scripts/quality/check-file-size.mjs",
"check:structural": "tsx scripts/structural-check.ts",
"format": "biome format .",
"lint": "biome check .",
"lint:staged": "lint-staged --concurrent false",
"test": "nx run-many -t test",
"build": "nx run-many -t build",
"typecheck": "nx run-many -t typecheck",
"affected:typecheck:local": "nx affected -t typecheck --base=origin/main --head=HEAD",
"affected:test:local": "nx affected -t lint,format,typecheck,test --base=origin/main --head=HEAD",
"affected:ci": "nx affected -t lint,format,typecheck,test,build --base=$NX_BASE --head=$NX_HEAD",
"dev:registry": "pnpm -F @clawdentity/registry run dev",
"dev:registry:local": "pnpm -F @clawdentity/registry run dev:local",
"dev:proxy": "pnpm -F @clawdentity/proxy run dev",
"dev:proxy:dev": "pnpm -F @clawdentity/proxy run dev:dev",
"dev:proxy:local": "pnpm -F @clawdentity/proxy run dev:local",
"dev:proxy:fresh": "pnpm -F @clawdentity/proxy run dev:fresh",
"env:sync": "bash ./scripts/env/sync-worktree-env.sh"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"husky": "^9.1.0",
"lint-staged": "^15.2.0",
"nx": "22.5.0",
"tsx": "^4.20.6",
"tsup": "^8.5.1",
"typescript": "5.8.3",
"vitest": "^4.0.18",
"wrangler": "^4.67.0"
}
}