-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.36 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.36 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
{
"name": "toban-cli",
"version": "0.10.0",
"description": "Toban Agent Runner CLI - Orchestrate AI coding agents from your terminal",
"type": "module",
"bin": {
"toban-cli": "./dist/cli.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup src/cli.ts --format esm --out-dir dist --target node20 --clean",
"local": "npm run build && node dist/cli.js",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:e2e": "bash scripts/docker-e2e-test.sh",
"test:e2e:mock": "bash scripts/mock-e2e-test.sh",
"test:e2e:full": "bash scripts/full-e2e-test.sh",
"test:e2e:full:preview": "E2E_MODE=preview bash scripts/full-e2e-test.sh",
"test:ws": "tsx scripts/ws-integration-test.ts"
},
"keywords": [
"ai",
"ai-agent",
"agent",
"agent-orchestration",
"cli",
"claude",
"claude-code",
"coding-agent",
"scrum",
"sprint",
"code-review",
"devtools",
"automation",
"git",
"worktree"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@clack/prompts": "^1.1.0",
"async-mutex": "^0.5.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.9.0",
"vitest": "^4.1.0"
}
}