ten-vad-lib
Version:
A JavaScript library for Ten VAD (Voice Activity Detection) based on WebAssembly
53 lines (52 loc) • 1.33 kB
JSON
{
"name": "ten-vad-lib",
"version": "1.0.0",
"description": "A JavaScript library for Ten VAD (Voice Activity Detection) based on WebAssembly",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"wasm"
],
"scripts": {
"build": "./scripts/build.sh",
"build:rollup": "rollup -c",
"dev": "rollup -c -w",
"clean": "rimraf dist",
"test": "node test/simple-test.js",
"prepublishOnly": "npm run clean && npm run build:rollup && mkdir -p dist/wasm && cp wasm/* dist/wasm/"
},
"keywords": [
"vad",
"voice-activity-detection",
"ten-vad",
"webrtc",
"audio",
"speech",
"webassembly",
"wasm"
],
"author": "Ten VAD Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/ten-vad-lib.git"
},
"bugs": {
"url": "https://github.com/your-org/ten-vad-lib/issues"
},
"homepage": "https://github.com/your-org/ten-vad-lib#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"rimraf": "^5.0.0",
"rollup": "^3.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"tslib": "^2.8.1"
}
}