-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.7 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.7 KB
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
{
"name": "wrist-rocket",
"author": "Liam Masters",
"version": "1.22",
"keywords": [
"pebble-app"
],
"private": true,
"dependencies": {
"pebble-clay": "1.0.4"
},
"pebble": {
"displayName": "Wrist Rocket",
"uuid": "604f683f-e643-4cb5-b72e-849d40f84755",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"aplite",
"basalt",
"chalk",
"diorite",
"emery"
],
"watchapp": {
"watchface": true
},
"resources": {
"media": [
{
"type": "bitmap",
"name": "ROCKET",
"file": "images/rocket.png"
},
{
"type": "bitmap",
"name": "ROCKET_LARGE",
"file": "images/rocket_large.png"
},
{
"characterRegex": "[0-9: ]",
"type": "font",
"name": "FONT_SILKSCREEN_58",
"file": "Silkscreen-Regular.ttf"
},
{
"characterRegex": "[0-9: ]",
"type": "font",
"name": "FONT_SILKSCREEN_42",
"file": "Silkscreen-Regular.ttf"
},
{
"type": "font",
"name": "FONT_SILKSCREEN_28",
"file": "Silkscreen-Regular.ttf"
},
{
"type": "font",
"name": "FONT_SILKSCREEN_24",
"file": "Silkscreen-Regular.ttf"
},
{
"type": "font",
"name": "FONT_SILKSCREEN_18",
"file": "Silkscreen-Regular.ttf"
}
]
},
"messageKeys": [
"MINUTES_TO_LAUNCH",
"ROCKET",
"OWM_API_KEY",
"MESSAGE_TYPE",
"TEMPERATURE",
"UNITS"
],
"capabilities": [
"configurable",
"location"
]
}
}