-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.93 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
42
43
44
45
46
47
48
49
50
51
{
"name": "codelia",
"private": true,
"engines": {
"node": ">=20 <25"
},
"packageManager": "bun@1.3.9",
"workspaces": [
"packages/*",
"packages/tui/*",
"examples/basic-web",
"tools/terminal-bench-viewer"
],
"scripts": {
"build": "bun run --filter @codelia/* build && bun run tui:build",
"tui": "cargo run --manifest-path crates/tui/Cargo.toml",
"tui:build": "cargo build --release --manifest-path crates/tui/Cargo.toml",
"tui:stage": "node scripts/stage-tui-binary.mjs",
"bump:version": "node scripts/bump-workspace-version.mjs",
"release:workspace": "node scripts/release-workspace.mjs",
"release:patch": "node scripts/release-workspace.mjs patch",
"release:minor": "node scripts/release-workspace.mjs minor",
"release:major": "node scripts/release-workspace.mjs major",
"sync:versions": "node scripts/sync-workspace-versions.mjs",
"check:versions": "node scripts/sync-workspace-versions.mjs --check",
"debug:openai:responses": "node scripts/debug-openai-responses.mjs",
"smoke:release": "node scripts/release-smoke.mjs",
"typecheck": "bun run --filter @codelia/* typecheck",
"lint": "biome lint .",
"check:deps": "node scripts/check-workspace-deps.mjs",
"fmt": "biome format . --write",
"check": "biome check .",
"test": "bun run test:js && bun run test:terminal-bench && bun run test:tui",
"test:js": "bun test packages/*/tests",
"test:terminal-bench": "bun test tools/terminal-bench/scripts/package-submission.test.ts tools/terminal-bench-viewer/src/server",
"test:tui": "cargo test --manifest-path crates/tui/Cargo.toml",
"test:watch": "bun test packages/*/tests --watch",
"terminal-bench:viewer": "bun run --filter @codelia/terminal-bench-viewer dev"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/json-schema": "^7.0.15",
"@types/node": "^25.0.9",
"bun-types": "^1.3.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"zod-to-json-schema": "^3.25.1"
}
}