UNPKG

web-vad

Version:

Web Voice Activity Detection (VAD)

68 lines (67 loc) 1.62 kB
{ "name": "web-vad", "version": "0.0.6", "author": "Jonathan Taylor", "homepage": "https://github.com/jptaylor/web-vad", "description": "Web Voice Activity Detection (VAD)", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "package.json", "yarn.lock", "README.md", "LICENSE" ], "repository": { "type": "git", "url": "git+https://github.com/jptaylor/web-vad.git" }, "keywords": [ "speech-recognition", "wake-word-detection", "machine-learning", "voice-activity-detection", "vad", "onnx", "voice-control", "offline-speech-recognition" ], "license": "ISC", "targets": { "vad": { "source": "src/index.ts", "context": "browser", "distDir": "dist", "isLibrary": true, "outputFormat": "esmodule", "includeNodeModules": false }, "worklet": { "source": "src/worklet.ts", "distDir": "dist", "context": "web-worker", "outputFormat": "global" } }, "scripts": { "build": "parcel build --no-cache && tsc --declaration --allowJs --emitDeclarationOnly", "dev": "parcel watch" }, "devDependencies": { "@parcel/packager-ts": "^2.12.0", "@parcel/transformer-typescript-types": "^2.12.0", "@parcel/transformer-worklet": "^2.12.0", "@types/audioworklet": "^0.0.56", "@types/node": "^20.14.9", "buffer": "^6.0.3", "parcel": "^2.12.0", "process": "^0.11.10", "typescript": "^5.5.3", "webpack": "^5.92.1", "webpack-cli": "^5.1.4" }, "dependencies": { "onnxruntime-web": "^1.18.0" } }