-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.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
{
"name": "tx-ai",
"version": "0.4.0",
"type": "module",
"bin": {
"tx": "./bin/tx"
},
"scripts": {
"build": "tsc",
"test": "node --import tsx --test src/mesh/__tests__/**/*.test.ts test/unit/**/*.test.ts test/*.test.ts",
"test:integration": "node --import tsx --test test/integration/**/*.test.ts",
"test:coverage": "c8 --all --src src --reporter=text --reporter=html --report-dir=coverage node --import tsx --test test/unit/**/*.test.ts test/integration/**/*.test.ts test/*.test.ts",
"test:e2e": "node --import tsx --test test/e2e/*.test.ts",
"test:e2e:infra": "node --import tsx --test --test-force-exit test/e2e/28-parallel-spawn-infra.test.ts test/e2e/29-fanout-infra.test.ts test/e2e/30-guardrails-infra.test.ts test/e2e/31-ensemble-infra.test.ts test/e2e/32-mesh-completion-infra.test.ts test/e2e/33-routing-errors-infra.test.ts test/e2e/34-crash-recovery-infra.test.ts test/e2e/35-revision-infra.test.ts test/e2e/36-dispatch-router-infra.test.ts test/e2e/37-config-options-infra.test.ts",
"test:e2e:llm": "node --import tsx --test test/e2e/real-llm/02-ask-human.test.ts test/e2e/real-llm/08-parallelism.test.ts test/e2e/real-llm/09-fanout.test.ts test/e2e/real-llm/10-guardrails.test.ts test/e2e/real-llm/11-ensemble.test.ts test/e2e/real-llm/12-mesh-completion.test.ts test/e2e/real-llm/13-revision.test.ts test/e2e/real-llm/14-config-options.test.ts",
"test:all": "node --import tsx --test test/**/*.test.ts",
"test:frontend": "cd frontend && npx playwright test",
"start": "node --import tsx src/cli/index.ts start",
"status": "node --import tsx src/cli/index.ts status",
"dev": "node --import tsx src/cli/index.ts server"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.92",
"@anthropic-ai/claude-code": "^2.0.62",
"@anthropic-ai/sdk": "^0.71.2",
"@noble/curves": "^2.0.1",
"@scure/bip39": "^2.0.1",
"@types/ioredis": "^4.28.10",
"@types/ws": "^8.18.1",
"better-sqlite3": "^11.0.0",
"chokidar": "^4.0.0",
"dotenv": "^17.2.3",
"fast-glob": "^3.3.3",
"ioredis": "^5.9.0",
"tar": "^6.2.0",
"ws": "^8.18.3",
"yaml": "^2.8.2",
"youtube-transcript-plus": "^1.1.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^20.0.0",
"@types/tar": "^6.1.0",
"c8": "^11.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
}
}