-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.21 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
95
96
97
98
99
100
101
102
{
"name": "echidna",
"author": "Michael Van Delft",
"version": "1.2.0",
"keywords": [
"pebble-app"
],
"private": true,
"dependencies": {
"pebble-clay": "^1.0.4"
},
"capabilities": [
"configurable"
],
"pebble": {
"displayName": "Echidna",
"uuid": "d174df6e-1bbc-4ef9-a509-a9c2accc9f1f",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"emery"
],
"watchapp": {
"watchface": true
},
"messageKeys": [
"bc",
"sec",
"vb_b",
"bat_tc",
"dow_tc",
"dow_ts",
"dow_bg",
"dow_b",
"m_tc",
"m_ts",
"m_bg",
"m_b",
"t_tc",
"t_ts",
"t_bg",
"t_b",
"d_tc",
"d_ts",
"d_bg",
"d_b"
],
"resources": {
"media": [
{
"name": "DSEG_SEVEN_BOLD_52",
"characterRegex": "[!~:0-9]",
"type": "font",
"file": "fonts/DSEG7ClassicMini-Bold-edit.ttf"
},
{
"name": "DSEG_SEVEN_BOLD_42",
"characterRegex": "[!~:0-9]",
"type": "font",
"file": "fonts/DSEG7ClassicMini-Bold-edit.ttf"
},
{
"name": "DSEG_SEVEN_BOLD_20",
"characterRegex": "[!~:0-9]",
"type": "font",
"file": "fonts/DSEG7ClassicMini-Bold-edit.ttf"
},
{
"name": "DSEG_FOURTEEN_20",
"type": "font",
"file": "fonts/DSEG14ClassicMini-Regular-edit.ttf"
},
{
"file": "images/logo.png",
"menuIcon": true,
"name": "IMAGE_MENU_ICON",
"type": "png"
},
{
"type": "png",
"name": "IMAGE_BLUETOOTH_CONNECTED_ICON",
"file": "images/bluetooth-connected.png"
},
{
"type": "png",
"name": "IMAGE_BLUETOOTH_DISCONNECTED_ICON",
"file": "images/bluetooth-disconnected.png"
},
{
"type": "png",
"name": "IMAGE_CHARGING_YELLOW_ICON",
"file": "images/charging-yellow.png"
},
{
"type": "png",
"name": "IMAGE_CHARGING_BLUE_ICON",
"file": "images/charging-blue.png"
}
]
}
}
}