feat: add local audio test mode

This commit is contained in:
2026-04-30 02:37:54 +09:00
parent 9dee708b64
commit cf6398f50a
12 changed files with 766 additions and 256 deletions

View File

@@ -5,7 +5,10 @@
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun 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"
},