speech-detector
Version:
A node.js library for detecting speech in audio using Silero's VAD model
43 lines (42 loc) • 1.05 kB
JSON
{
"name": "speech-detector",
"version": "1.0.0",
"description": "A node.js library for detecting speech in audio using Silero's VAD model",
"main": "dist/speech_detector.js",
"type": "module",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && tsc && npm run copy-files",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 model/*.onnx dist/model/",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/ianmarmour/speech-detector.git"
},
"keywords": [
"Silero",
"VAD",
"Detection",
"Audio",
"Speech"
],
"author": "Ian Armour <ianmarmour@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ianmarmour/speech-detector/issues"
},
"homepage": "https://github.com/ianmarmour/speech-detector#readme",
"devDependencies": {
"@types/node": "^20.9.0",
"copyfiles": "^2.4.1",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"dependencies": {
"onnxruntime-web": "^1.16.1"
}
}