-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.4 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.4 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
{
"private": true,
"license": "Apache-2.0",
"type": "module",
"packageManager": "pnpm@10.29.3",
"pnpm": {
"onlyBuiltDependencies": [
"koffi"
]
},
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "bash scripts/git-hooks/install.sh",
"build": "pnpm -r run build",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:e2e:claude": "vitest run --config vitest.e2e.config.ts packages/claude-code",
"test:e2e:openclaw": "vitest run --config vitest.e2e.config.ts packages/openclaw",
"test:e2e:opencode": "vitest run --config vitest.e2e.config.ts packages/opencode",
"test:e2e:cursor": "vitest run --config vitest.e2e.config.ts packages/extension",
"test:e2e:vscode": "vitest run --config vitest.e2e.config.ts packages/extension",
"test:watch": "vitest",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"check": "pnpm -r exec tsc --noEmit",
"build:sea": "bash packages/claude-code/scripts/build-sea.sh",
"package:vsix": "pnpm -C packages/extension run package:vsix",
"clean": "pnpm -r run clean",
"changeset": "changeset",
"version": "changeset version && node scripts/sync-manifests.mjs"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@changesets/cli": "^2.29.8",
"typescript": "^5.9.0",
"vitest": "^4.0.0",
"vitest-teamcity-reporter": "^0.4.1"
}
}