-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
143 lines (143 loc) · 3.34 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "pebble-directions",
"author": "Dyedgreen",
"version": "1.8.0",
"keywords": [
"navigation",
"maps",
"directions"
],
"private": true,
"dependencies": {
"pebble-clay": "^1.0.1"
},
"pebble": {
"displayName": "Directions",
"uuid": "36f93ce6-8a6d-4518-989d-31a7b0458e37",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"basalt",
"chalk"
],
"capabilities": [
"location",
"configurable"
],
"watchapp": {
"watchface": false,
"hiddenApp": false,
"onlyShownOnCommunication": false
},
"messageKeys": [
"SEARCH",
"SUCCESS",
"DISTANCE",
"TIME",
"INSTRUCTION_ICONS",
"INSTRUCTION_LIST",
"CURRENT"
],
"resources": {
"media": [
{
"file": "images/app.png",
"name": "ICON_APP",
"targetPlatforms": null,
"type": "bitmap",
"menuIcon": true
},
{
"file": "images/car.png",
"name": "ICON_CAR",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/bike.png",
"name": "ICON_BIKE",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/train.png",
"name": "ICON_TRAIN",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/walk.png",
"name": "ICON_WALK",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/error_network.png",
"name": "ICON_ERROR_NETWORK",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/error_api.png",
"name": "ICON_ERROR_API",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/error_voice.png",
"name": "ICON_ERROR_DICTATION",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/error_other.png",
"name": "ICON_ERROR_OTHER",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_forward.png",
"name": "ICON_STEP_FORWARD",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_left.png",
"name": "ICON_STEP_LEFT",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_uleft.png",
"name": "ICON_STEP_ULEFT",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_right.png",
"name": "ICON_STEP_RIGHT",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_uright.png",
"name": "ICON_STEP_URIGHT",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_attr.png",
"name": "ICON_STEP_ATTR",
"targetPlatforms": null,
"type": "bitmap"
},
{
"file": "images/step_final.png",
"name": "ICON_STEP_FINAL",
"targetPlatforms": null,
"type": "bitmap"
}
]
}
}
}