-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "claw-guard-monorepo",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"build": "npm run build -w packages/core -w packages/memory && npm run build -w packages/audit -w packages/billing -w packages/enrichment -w packages/feed -w packages/reputation -w packages/skills-av -w packages/team && npm run build -w packages/adapter-claude -w packages/adapter-codex -w packages/adapter-mcp -w packages/passport -w packages/replay && npm run build -w packages/cli -w packages/web-ui -w packages/lp -w packages/docker",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"dev:lp": "npm run dev -w packages/lp",
"clean": "npm run clean --workspaces --if-present"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}