-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.35 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.35 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": "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 && pnpm check:docs && pnpm check:cli-manifest",
"check:file-sizes": "node scripts/check-file-sizes.mjs",
"check:docs": "node scripts/check-docs-frontmatter.mjs",
"check:cli-manifest": "node scripts/dump-cli-help.mjs --check",
"dump:cli-help": "node scripts/dump-cli-help.mjs",
"fmt": "biome format --write .",
"lint": "biome lint .",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm --filter ghost-fingerprint build && pnpm --filter ghost-drift build && changeset publish"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.90.0",
"@biomejs/biome": "^2.4.12",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^22.0.0",
"gray-matter": "^4.0.3",
"lefthook": "^2.1.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"zod": "^4.3.6"
}
}