-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 941 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 941 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
27
28
29
30
{
"name": "voice-orchestrator-prototype",
"version": "1.0.0",
"description": "Streaming Voice-Agent Orchestrator — Live API proof-of-concept for Gemini CLI voice mode",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"dev:ptt": "tsx src/index.ts --ptt",
"demo": "tsx src/demo-simulated.ts",
"test": "for f in src/*.test.ts; do tsx \"$f\" || exit 1; done",
"test:sm": "tsx src/stateMachine.test.ts",
"test:tm": "tsx src/transcriptManager.test.ts",
"test:ih": "tsx src/interruptHandler.test.ts",
"test:to": "tsx src/toolOrchestrator.test.ts",
"test:lc": "tsx src/liveClient.test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"naudiodon": "^2.3.4",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/ws": "^8.5.13",
"@types/node": "^22.10.0",
"typescript": "^5.7.0",
"tsx": "^4.19.0"
}
}