-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "dd-vad",
"version": "1.0.0",
"description": "It's typescript based VAD that uses silero-vad under the hood. It's highly robust for Voice Activity Detection.",
"main": "dist/dd-vad.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"copy-html": "copyfiles -u 1 src/*.html dist",
"start": "npm run build && npm run copy-html && http-server dist",
"start:prod": "npm run build:prod && npm run copy-html && http-server dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"silero-vad",
"vad",
"dictation",
"daddy"
],
"author": "Rahul Bansal",
"license": "ISC",
"dependencies": {
"dd-vad": "file:",
"onnxruntime-web": "^1.18.0"
},
"devDependencies": {
"@types/node": "^22.1.0",
"copyfiles": "^2.4.1",
"http-server": "^14.1.1",
"nodemon": "^3.1.4",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
}
}