Files
realtime_voice_bot/package.json

38 lines
886 B
JSON

{
"name": "realtime_voice_bot",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts discord",
"start:discord": "bun src/index.ts discord",
"start:local": "bun src/index.ts local",
"audio:devices": "bun src/index.ts local-devices",
"check": "tsc --noEmit",
"build": "tsc -p tsconfig.json"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=22.12.0"
},
"dependencies": {
"@discordjs/voice": "^0.19.2",
"avr-vad": "^1.0.10",
"discord.js": "^14.26.3",
"dotenv": "^17.4.2",
"ffmpeg-static": "^5.3.0",
"opusscript": "^0.1.1",
"prism-media": "^1.3.5",
"ws": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.3"
},
"trustedDependencies": [
"onnxruntime-node"
]
}