forked from andrenatal/voice-addon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 1.83 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "voice-addon",
"display_name": "Voice Control",
"version": "1.0.1",
"description": "Hands-free voice addon with personalized keyword and local voice processing.",
"author": "André Natal",
"main": "index.js",
"scripts": {
"lint": "eslint ."
},
"keywords": [
"mozilla",
"iot",
"adapter",
"voice"
],
"homepage": "https://github.com/andrenatal/voice-addon",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/andrenatal/voice-addon.git"
},
"bugs": {
"url": "https://github.com/andrenatal/voice-addon/issues"
},
"devDependencies": {
"eslint": "^5.10.0"
},
"files": [
"LICENSE",
"SHA256SUMS",
"voice-adapter.js",
"index.js",
"deps/install_deps.sh",
"deps/dependencies.zip",
"assets/end_spot.wav",
"node_modules"
],
"moziot": {
"api": {
"min": 2,
"max": 2
},
"plugin": true,
"exec": "{nodeLoader} {path}",
"config": {
"keyword": "hey snips",
"speaker": "USB",
"microphone": "USB"
},
"schema": {
"type": "object",
"description": "Configuration for your voice addon",
"properties": {
"token": {
"type": "string",
"description": "Navigate to Settings -> Developer -> Create local authorization -> Allow. Then copy the presented JSON Web Token in this field"
},
"keyword": {
"type": "string",
"enum": [
"hey snips"
],
"default": "USB",
"description": "Keyword used to trigger the command."
},
"speaker": {
"type": "string",
"enum": [
"USB"
],
"default": "USB"
}
},
"required": [
"token"
]
}
},
"dependencies": {
"mqtt": ">=3.0.0"
}
}