forked from DisabledMonkey/daskeyboard-applet--philips-hue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.53 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
84
85
86
87
88
89
90
91
{
"name": "daskeyboard-applet--philips-hue",
"displayName": "Philips Hue",
"version": "2.0.0",
"description": "Displays lights status.",
"longDescription": "Displays whether rooms lights are on or off.",
"officialProductName": "Hue",
"appUrl": "",
"isSingleton": true,
"videoUrl": "",
"icon": "assets/icon.png",
"image": "assets/q-cpu-usage.png",
"publisher": "DisabledMonkey",
"authorName": "DisabledMonkey",
"authorUrl": "https://github.com/DisabledMonkey",
"issuesUrl": "https://github.com/DisabledMonkey/daskeyboard-applet--philips-hue/issues",
"homePageUrl": "https://github.com/DisabledMonkey/daskeyboard-applet--philips-hue",
"developerRepoUrl": "https://github.com/DisabledMonkey/daskeyboard-applet--philips-hue",
"licenseUrl": "http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt",
"changelogUrl": "CHANGELOG.md",
"license": "MIT",
"readMeUrl": "README.md",
"readMeEndUserUrl": "README_ENDUSER.md",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha"
},
"engines": {
"das-keyboard-q": "4.0.0"
},
"dependencies": {
"daskeyboard-applet": "^2.11.5",
"eventsource": "^2.0.2",
"mocha": "^10.4.0",
"node-hue-api": "^5.0.0-beta.16",
"settings-store": "^1.4.1"
},
"qConfig": {
"geometry": {
"width": 1,
"height": 1,
"defaults": {
"origin": {
"x": 0,
"y": 0
}
}
},
"questions": [
{
"key": "room",
"value": "",
"label": "Choose room",
"help": "Select the room you would like to see.",
"required": true,
"order": 1,
"controlType": "dropdown",
"dynamic": true
},
{
"key": "useLightColor",
"label": "Use light color for key color?",
"help": "If you want the key to be the color of your light (overrides On Color)",
"order": 2,
"controlType": "checkbox"
},
{
"key": "onColor",
"label": "Choose color for when lights are on",
"help": "This is the color that is displayed when the lights are on.",
"required": true,
"order": 3,
"value": "#00ff00",
"controlType": "color"
},
{
"key": "offColor",
"label": "Choose color for when lights are off",
"help": "This is the color that is displayed when the lights are off.",
"required": true,
"order": 3,
"value": "#111111",
"controlType": "color"
}
],
"applet": {
"defaults": {}
}
}
}