package.json 484 B

123456789101112131415161718
  1. {
  2. "name": "dsh-voice-server",
  3. "version": "0.1.0",
  4. "description": "Local streaming ASR for the DSH Web GUI: sherpa-onnx Zipformer recognizer behind a WebSocket route (/api/voice/asr). Fully offline.",
  5. "private": true,
  6. "type": "module",
  7. "main": "lib/index.js",
  8. "exports": {
  9. ".": "./lib/index.js",
  10. "./lib/*": "./lib/*",
  11. "./package.json": "./package.json"
  12. },
  13. "dependencies": {
  14. "sherpa-onnx-node": "^1.13.6",
  15. "ws": "^8.21.3"
  16. },
  17. "license": "MIT"
  18. }