forked from jose-troche/PebbleThermostatSetter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.4 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
{
"name": "ThermoSetterREST",
"author": "Alex Wolfe",
"version": "1.0.0",
"keywords": [
"pebble-app"
],
"private": true,
"dependencies": {
"bluebird": "^3.7.2",
"message-queue-pebble": "^1.0.0"
},
"pebble": {
"displayName": "ThermoSetterREST",
"uuid": "57b165cc-1b61-4955-a6a4-4de6960bae45",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"aplite",
"basalt",
"chalk",
"diorite"
],
"watchapp": {
"watchface": false
},
"messageKeys": [
"command",
"temperatureChange",
"thermostatIndex",
"thermostatId",
"thermostatMode",
"thermostatName",
"currentTemperature",
"targetTemperature"
],
"capabilities": [
"configurable"
],
"resources": {
"media": [
{
"type": "png",
"name": "UP",
"file": "img/up.png"
},
{
"type": "png",
"name": "DOWN",
"file": "img/down.png"
},
{
"type": "png",
"name": "SELECTOR",
"file": "img/selector.png"
},
{
"type": "png",
"name": "THERMOMETER",
"file": "img/thermometer.png"
},
{
"type": "png",
"name": "MENUICON",
"file": "img/menuicon.png",
"menuIcon": true
}
]
}
}
}