UNPKG

avr-vad

Version:

A Node.js library for Voice Activity Detection using Silero VAD

66 lines (65 loc) 1.55 kB
{ "name": "avr-vad", "version": "1.0.9", "description": "A Node.js library for Voice Activity Detection using Silero VAD", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "./scripts/build.sh", "test": "mocha test/*.spec.js", "clean": "rm -rf dist" }, "keywords": [ "vad", "voice-activity-detection", "silero", "audio", "speech", "onnx" ], "author": { "name": "Agent Voice Response", "email": "info@agentvoiceresponse.com", "url": "https://github.com/agentvoiceresponse" }, "license": "MIT", "dependencies": { "onnxruntime-node": "^1.22.0-rev" }, "devDependencies": { "@eslint/eslintrc": "^3.3.1", "@eslint/js": "^9.28.0", "@types/mocha": "^10.0.1", "@types/node": "^22.15.30", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "chai": "^4.3.7", "eslint": "^9.28.0", "globals": "^16.2.0", "mocha": "^10.2.0", "sinon": "^15.0.1", "typescript": "^5.8.3", "wav-decoder": "^1.3.0" }, "files": [ "dist/**/*", "silero_vad_v5.onnx", "silero_vad_legacy.onnx", "README.md", "LICENSE" ], "engines": { "node": ">=16.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/agentvoiceresponse/avr-vad.git" }, "bugs": { "url": "https://github.com/agentvoiceresponse/avr-vad/issues" }, "homepage": "https://github.com/agentvoiceresponse/avr-vad#readme", "publishConfig": { "access": "public" } }