-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 840 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 840 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
31
{
"name": "ghost",
"private": true,
"description": "Design drift detection system",
"license": "Apache-2.0",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --build",
"build:ui": "pnpm --filter @ghost/ui build",
"check": "biome check . && pnpm typecheck && pnpm check:file-sizes",
"check:file-sizes": "node scripts/check-file-sizes.mjs",
"fmt": "biome format --write .",
"lint": "biome lint ."
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.88.0",
"@biomejs/biome": "^2.4.12",
"@types/node": "^22.0.0",
"lefthook": "^2.1.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}