-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
89 lines (89 loc) · 2.08 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
{
"name": "forecaswatch2",
"author": "Matt Rossman",
"version": "1.20.0",
"keywords": [
"pebble-app"
],
"private": true,
"scripts": {
"start": "docker run -dit --name=forecaswatch2 --platform=linux/amd64 -v $PWD:/forecaswatch2 rebble/pebble-sdk",
"stop": "docker rm -f forecaswatch2",
"shell": "docker exec -it -w /forecaswatch2 forecaswatch2 bash",
"build": "docker exec -w /forecaswatch2 forecaswatch2 bash -c \"pebble build\""
},
"dependencies": {
"suncalc": "^1.9.0"
},
"pebble": {
"displayName": "FCW2",
"uuid": "7ed9b053-1521-4e49-be8b-6e12c68978ae",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"aplite",
"basalt",
"diorite"
],
"watchapp": {
"watchface": true
},
"resources": {
"media": [
{
"menuIcon": true,
"type": "png",
"name": "IMAGE_MENU_ICON",
"file": "icon.png"
},
{
"type": "bitmap",
"name": "IMAGE_MUTE",
"file": "img/mute.png",
"memoryFormat": "1BitPalette"
},
{
"type": "bitmap",
"name": "IMAGE_BT_DISCONNECT",
"file": "img/bt-disconnect.png",
"memoryFormat": "1BitPalette"
},
{
"type": "bitmap",
"name": "IMAGE_BT_CONNECT",
"file": "img/bt.png",
"memoryFormat": "1BitPalette"
}
]
},
"capabilities": [
"location",
"configurable"
],
"messageKeys": [
"TEMP_TREND_INT16",
"PRECIP_TREND_UINT8",
"FORECAST_START",
"NUM_ENTRIES",
"CURRENT_TEMP",
"CITY",
"SUN_EVENTS",
"CLAY_CELSIUS",
"CLAY_TIME_LEAD_ZERO",
"CLAY_AXIS_12H",
"CLAY_START_MON",
"CLAY_COLOR_TODAY",
"CLAY_PREV_WEEK",
"CLAY_TIME_FONT",
"CLAY_SHOW_QT",
"CLAY_SHOW_BT",
"CLAY_SHOW_BT_DISCONNECT",
"CLAY_VIBE",
"CLAY_SHOW_AM_PM",
"CLAY_COLOR_SATURDAY",
"CLAY_COLOR_SUNDAY",
"CLAY_COLOR_US_FEDERAL",
"CLAY_COLOR_TIME"
]
}
}