-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.54 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
{
"version": "1.0.0",
"author": "jerroh",
"private": true,
"dependencies": {
"pebble-clay": "^1.0.4"
},
"keywords": [
"pebble-app"
],
"pebble": {
"sdkVersion": "3",
"displayName": "pebble_habit_tracker",
"uuid": "75e4c603-51c9-4f3b-b9c9-86a38ab19ac1",
"messageKeys": [
"Habit0",
"Habit1",
"Habit2",
"Habit3",
"Habit4",
"Habit5",
"Habit6",
"Habit7",
"Habit8",
"Habit9"
],
"enableMultiJS": true,
"targetPlatforms": [
"aplite",
"basalt",
"chalk",
"diorite"
],
"capabilities": [
"configurable"
],
"watchapp": {
"watchface": false
},
"resources": {
"media": [
{
"type": "bitmap",
"name": "CHECKED",
"file": "images/checked.png"
},
{
"type": "bitmap",
"name": "UNCHECKED",
"file": "images/unchecked.png"
},
{
"type": "bitmap",
"name": "CHALK_ICON",
"file": "images/spike_chalk.pbl.png"
},
{
"type": "bitmap",
"name": "WHITE_CHECKED",
"file": "images/white_checked.png"
},
{
"type": "bitmap",
"name": "WHITE_UNCHECKED",
"file": "images/white_unchecked.png"
},
{
"type": "bitmap",
"name": "GRAPH",
"file": "images/graph4.pbl.png"
}
]
}
},
"name": "pebble_habit_tracker"
}