-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 1.42 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
52
53
54
55
56
57
58
59
{
"name": "voice-addon",
"version": "2.2.0",
"description": "Hands-free voice addon with personalized keyword and local voice processing.",
"scripts": {
"lint": "eslint ."
},
"main": "index.js",
"homepage": "https://github.com/WebThingsIO/voice-addon",
"author": "WebThingsIO",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/WebThingsIO/voice-addon.git"
},
"bugs": {
"url": "https://github.com/WebThingsIO/voice-addon/issues"
},
"dependencies": {
"deepspeech": "^0.9.0",
"deepspeech-tflite": "^0.9.0",
"js-levenshtein": "^1.1.6",
"mic": "^2.1.2",
"sound-player": "^1.0.13",
"webthings-client": "^2.1.0"
},
"optionalDependencies": {
"@matrix-io/matrix-lite": "0.4.6"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1"
},
"files": [
"LICENSE",
"README.md",
"SHA256SUMS",
"assets/LICENSE",
"assets/alphabet.txt",
"assets/deepspeech-model.tflite",
"assets/error.wav",
"assets/no-input.wav",
"assets/success.wav",
"assets/wake-word.wav",
"bin/build_binary",
"bin/generate_scorer_package",
"bin/lmplz",
"index.js",
"lib/adapter.js",
"lib/command-utils.js",
"lib/deep-speech-interface.js",
"lib/device.js",
"lib/matrix-microphone.js",
"lib/property.js",
"lib/system-microphone.js",
"manifest.json",
"node_modules"
]
}