-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.07 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
43
44
45
46
47
48
49
50
51
{
"name": "vad-audio-worklet",
"version": "0.1.4",
"description": "Voice activity detection (VAD) AudioWorklet.",
"browser": "src/vad-audio-worklet.js",
"files": [
"src"
],
"scripts": {
"fft.js-add-export": "node ./scripts/fft.js-add-export.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thurti/vad-audio-worklet.git"
},
"keywords": [
"vad",
"voice activity detection",
"audioworklet",
"audioprocessor",
"web audio api",
"voice",
"speech"
],
"author": "thurti",
"license": "MIT",
"bugs": {
"url": "https://github.com/thurti/vad-audio-worklet/issues"
},
"homepage": "https://github.com/thurti/vad-audio-worklet#readme",
"funding": [
{
"type": "Github",
"url": "https://github.com/sponsors/thurti"
},
{
"type": "Ko-fi",
"url": "https://ko-fi.com/thurti"
},
{
"type": "Buy Me A Coffee",
"url": "https://buymeacoffee.com/thurti"
}
],
"devDependencies": {
"fft.js": "^4.0.4"
},
"publishConfig": {
"access": "public"
}
}