-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.1 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.1 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
{
"name": "minimum-headroom",
"version": "1.13.12",
"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",
"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",
"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",
"test": "node --test"
}
}