-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.91 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
{
"name": "minimum-headroom",
"version": "1.26.3",
"private": true,
"type": "module",
"scripts": {
"setup": "./scripts/setup.sh",
"setup:all": "./scripts/setup.sh --with-realtime-asr",
"setup:realtime-asr": "./scripts/setup-realtime-asr.sh",
"setup:qwen3-tts": "./scripts/setup-qwen3-tts.sh",
"setup:supertonic": "./scripts/setup-supertonic.sh",
"setup:interpreter": "./scripts/setup-interpreter-stack.sh",
"face-app:start": "node face-app/dist/index.js",
"operator-bridge:start": "node face-app/dist/operator_bridge.js",
"mcp-server:start": "node mcp-server/dist/index.js",
"face-app:run": "./scripts/run-face-app.sh",
"operator-bridge:run": "./scripts/run-operator-bridge.sh",
"operator-stack:run": "./scripts/run-operator-stack.sh",
"interpreter-stack:run": "./scripts/run-interpreter-stack.sh",
"interpreter:doctor": "./scripts/interpreter-doctor.sh",
"interpreter:smoke": "./scripts/smoke-interpreter-stack.sh",
"interpreter:corpus-generate": "node scripts/generate-interpreter-corpus.mjs",
"interpreter:benchmark-corpus": "./scripts/benchmark-interpreter-corpus.sh",
"interpreter:benchmark-vad": "./scripts/benchmark-atom-vad-replay.sh",
"interpreter:benchmark-mtp": "./scripts/benchmark-gemma4-mtp.sh",
"asr-worker:start": "./scripts/run-asr-worker.sh",
"asr-worker:run": "./scripts/run-asr-worker.sh",
"asr-worker:smoke": "uv run --project asr-worker python -m asr_worker --smoke",
"realtime-asr:run": "./scripts/run-vllm-voxtral.sh",
"mcp-server:run": "./scripts/run-mcp-server.sh",
"tts-worker:run": "./scripts/run-tts-worker.sh",
"tts-worker:smoke": "./scripts/run-tts-worker.sh --smoke",
"atoms3r:bridge": "node scripts/atoms3r-http-bridge.mjs",
"test": "node --test"
},
"dependencies": {
"@xterm/addon-serialize": "^0.14.0",
"@xterm/headless": "^6.0.0",
"@xterm/xterm": "^6.0.0",
"three": "0.161.0"
}
}