-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 4.76 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 4.76 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "orch",
"version": "0.1.2",
"description": "Code-first orchestrator for chaining coding-agent CLIs (Claude Code, Codex)",
"type": "module",
"license": "MIT",
"bin": {
"orch": "./src/cli/main.ts"
},
"exports": {
".": "./src/index.ts"
},
"scripts": {
"check": "bun run lint && bun run typecheck && bun run test && bun run test:two-pane:lifecycle && bun run check:migration",
"build:binary": "bun scripts/build-binary.ts",
"orch:binary": "bun scripts/orch-binary.ts",
"check:actions": "bun scripts/check-action-pins.ts",
"check:migration": "bun run overlap-report && bun run import-parity && bun test tests/_migration/__tests__",
"overlap-report": "bun tests/_migration/overlap-report.ts",
"import-parity": "bun tests/_migration/import-parity.ts",
"reconcile": "bun tests/_migration/reconcile.ts",
"check:int-dirs": "bun scripts/check-integration-dirs.ts",
"preflight:release": "bash scripts/preflight-release.sh",
"check:release": "bun run preflight:release && bun run lint && bun run typecheck && bun run test:binary-smoke && bun run test:project && bun run test:e2e:real && bun run test:two-pane:lifecycle && bun run test:two-pane:full:real",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"test:two-pane:model": "bun test tests/model",
"test:two-pane:tmux-argv": "bun test tests/tmux-argv",
"test:two-pane:screen": "bun test tests/dsl/drivers/__tests__/screen-driver.test.ts tests/screen",
"test:two-pane:full:fake": "bun test tests/dsl/drivers/__tests__/full-host-fake-agent-driver.test.ts tests/full-host/fake-agent",
"test:two-pane:full:recorded": "bun test tests/dsl/drivers/__tests__/recorded-agent-driver.test.ts tests/full-host/recorded-agent",
"test:two-pane:full:real": "RUN_REAL_TMUX_E2E=1 bun test tests/full-host/real-agent",
"test:two-pane:fast": "bun test tests/model tests/tmux-argv tests/dsl/__tests__ tests/dsl/panes/__tests__ tests/dsl/drivers/__tests__/model-driver.test.ts tests/dsl/drivers/__tests__/full-host-static-app.test.ts",
"test:two-pane:tmux": "bun test --max-concurrency=4 tests/dsl/drivers/__tests__/screen-driver.test.ts tests/screen tests/dsl/drivers/__tests__/full-host-fake-agent-driver.test.ts tests/full-host/fake-agent tests/dsl/drivers/__tests__/recorded-agent-driver.test.ts tests/full-host/recorded-agent",
"test:two-pane": "bun run test:two-pane:fast && bun run test:two-pane:tmux",
"test:two-pane:lifecycle": "bun test --max-concurrency=4 tests/dsl/drivers/__tests__/lifecycle-driver.test.ts tests/lifecycle",
"test:two-pane:all": "bun run test:two-pane && bun run test:two-pane:lifecycle && bun run test:two-pane:full:real",
"test:unit": "bun test tests/unit",
"test:int": "bun test --max-concurrency=4 tests/integration/cli tests/integration/codegen tests/integration/core tests/integration/examples tests/integration/hosts tests/integration/observability tests/integration/runners tests/integration/services tests/integration/state tests/integration/validators tests/integration/workflows",
"test:int:real-tmux": "bun test --max-concurrency=2 tests/integration/real-tmux",
"test:e2e": "bun test tests/e2e",
"test:e2e:real": "RUN_REAL_E2E=1 bun test tests/e2e",
"test:binary-smoke": "bun test tests/binary-smoke",
"test:project": "bun run check:int-dirs && bun run test:unit && bun run test:int && bun run test:int:real-tmux && bun run test:e2e && bun run test:two-pane",
"test": "bun run test:project",
"test:watch": "bun test --watch tests/unit",
"test:coverage": "bun test --coverage tests/unit tests/integration/cli tests/integration/codegen tests/integration/core tests/integration/examples tests/integration/hosts tests/integration/observability tests/integration/runners tests/integration/services tests/integration/state tests/integration/validators tests/integration/workflows",
"coverage:html": "genhtml coverage/lcov.info --output-directory coverage/html && echo 'Report: coverage/html/index.html'",
"coverage:open": "bun run test:coverage && bun run coverage:html && open coverage/html/index.html",
"docs:dev": "vitepress dev docs/public",
"docs:build": "vitepress build docs/public",
"docs:preview": "vitepress preview docs/public"
},
"dependencies": {
"ink": "^7.0.1",
"ink-text-input": "^6.0.0",
"react": "^19.2.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/bun": "latest",
"@types/react": "^19.2.0",
"ink-testing-library": "^4.0.0",
"typescript": "^5.6.0",
"vitepress": "^1.6.4"
},
"engines": {
"bun": ">=1.2.0"
}
}