-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 999 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 999 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
{
"name": "zero-os",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": ["packages/*", "apps/*", "benchmarks/*"],
"scripts": {
"test": "bun test --recursive packages apps",
"test:e2e": "bunx playwright test",
"e2e:server": "bun run e2e/server.ts",
"check": "bunx tsc -p tsconfig.check.json",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"build:web": "cd apps/web && bun run build",
"dev:web": "cd apps/web && bun run dev",
"zero": "bun run apps/server/src/cli.ts",
"x-search:probe": "bun run benchmarks/x-search-usage-probe/run.ts",
"compaction:quality": "bun run benchmarks/zero-runtime/compaction-quality-eval.ts",
"compaction:prompt-bench": "bun run benchmarks/zero-runtime/compaction-prompt-benchmark.ts",
"compaction:tool-io-digest": "bun run benchmarks/zero-runtime/tool-io-digest-benchmark.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "^1.58.2"
}
}