35 lines
910 B
JSON
35 lines
910 B
JSON
{
|
|
"name": "realtime_voice_bot",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"setup": "bun src/setup.ts",
|
|
"setup:all": "bun run setup",
|
|
"setup:stt": "bun src/setup-python.ts",
|
|
"setup:llm": "bun src/setup-llm.ts",
|
|
"setup:tts": "bun src/setup-tts.ts",
|
|
"setup:python": "bun run setup:stt",
|
|
"test:stt": "bun src/index.ts test-stt",
|
|
"test:sttllm": "bun src/index.ts test-sttllm",
|
|
"test:all": "bun src/index.ts test-all",
|
|
"test:llm": "bun src/index.ts test-llm",
|
|
"test:tts": "bun src/index.ts test-tts",
|
|
"devices": "bun src/index.ts devices",
|
|
"check": "tsc --noEmit",
|
|
"build": "tsc -p tsconfig.json"
|
|
},
|
|
"engines": {
|
|
"bun": ">=1.3.0",
|
|
"node": ">=22.12.0"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^17.4.2",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.6.0",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|