-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 1.99 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 1.99 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "sundial",
"author": "mbosc",
"version": "1.0.0",
"keywords": [
"pebble-app"
],
"capabilities": [
"location",
"configurable"
],
"private": true,
"dependencies": {
"pebble-clay": "^1.0.4"
},
"companyName": "mbosc",
"pebble": {
"displayName": "SunDial",
"uuid": "b6d6f6be-f830-4c08-ae35-f35bd7e0b9c7",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"basalt",
"chalk"
],
"watchapp": {
"watchface": true
},
"messageKeys": [
"JSREADY",
"TIMEZONESET",
"TIMEZONE",
"DELTAUTC",
"SUNTIMES[18]",
"SHOW_MODE",
"CUSTOMTIME"
],
"resources": {
"media": [
{
"file": "menuimg.png",
"menuIcon": true,
"name": "MENU_ICON",
"type": "bitmap"
},
{
"type": "bitmap",
"name": "IMAGE_BG_NITE",
"file": "bgnite.png"
},
{
"type": "bitmap",
"name": "IMAGE_BG_DAY",
"file": "bgday.png"
},
{
"characterRegex": "[ -~]",
"type": "font",
"name": "FONT_OBOE_8",
"file": "6px-Normal.ttf",
"compatibility": "2.7"
},
{
"characterRegex": "[ -~]",
"type": "font",
"name": "FONT_THREE_7",
"file": "5by3.ttf",
"compatibility": "2.7"
},
{
"characterRegex": "[ -~]",
"type": "font",
"name": "FONT_FIVE_10",
"file": "5by5.ttf",
"compatibility": "2.7"
},
{
"characterRegex": "[ -~]",
"type": "font",
"name": "FONT_VIC_20",
"file": "VictorMono-Bold.ttf",
"compatibility": "2.7"
},
{
"characterRegex": "[ -~]",
"type": "font",
"name": "FONT_VIC_30",
"file": "VictorMono-Bold.ttf",
"compatibility": "2.7"
}
]
}
}
}