Skip to content

Commit

Permalink
Add manifest.json, update dependencies.
Browse files Browse the repository at this point in the history
Also, lint code.
  • Loading branch information
mrstegeman authored and andrenatal committed Dec 5, 2019
1 parent fa2c245 commit 92cc36d
Show file tree
Hide file tree
Showing 5 changed files with 630 additions and 344 deletions.
54 changes: 54 additions & 0 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"author": "Andr\u00e9 Natal",
"description": "Hands-free voice addon with personalized keyword and local voice processing.",
"gateway_specific_settings": {
"webthings": {
"exec": "{nodeLoader} {path}",
"primary_type": "adapter",
"strict_max_version": "*",
"strict_min_version": "0.10.0"
}
},
"homepage_url": "https://github.com/andrenatal/voice-addon",
"id": "voice-addon",
"license": "MPL-2.0",
"manifest_version": 1,
"name": "Voice Control",
"options": {
"default": {
"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"
]
}
},
"short_name": "Voice",
"version": "1.0.2"
}
Loading

0 comments on commit 92cc36d

Please sign in to comment.