Add realtime loopback STT prototype

This commit is contained in:
2026-05-02 20:20:54 +09:00
parent 10e0dd75db
commit 5775c4809a
17 changed files with 1034 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "realtime_voice_bot",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"start:loopback": "bun src/index.ts loopback",
"devices": "bun src/index.ts devices",
"setup:python": "bun src/setup-python.ts",
"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"
}
}