-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (118 loc) · 2.63 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
{
"name": "minitrix2",
"author": "lavendork",
"version": "0.2.0",
"keywords": [
"pebble-app"
],
"private": true,
"dependencies": {
"pebble-clay": "^1.0.4"
},
"pebble": {
"displayName": "Minitrix2",
"uuid": "8b227bd2-e5dc-40d1-93b8-aeecdccfa51b",
"sdkVersion": "3",
"enableMultiJS": true,
"capabilities": [
"configurable",
"location"
],
"targetPlatforms": [
"aplite",
"basalt",
"chalk",
"diorite"
],
"watchapp": {
"watchface": true
},
"messageKeys": [
"JSReady",
"PrefDialMode",
"PrefHideUI",
"PrefHighContrast",
"PrefDoColorOverride",
"PrefOverrideColor",
"PrefDoWeather",
"PrefWeatherUnits",
"WeatherToken",
"WeatherRequestPls",
"WeatherReturnCode",
"WeatherTemperatureK",
"WeatherCondition"
],
"resources": {
"media": [
{
"menuIcon": true,
"type": "bitmap",
"name": "IMAGE_MENU_ICON",
"file": "mintrix_icon_bitmap.png"
},
{
"type": "font",
"name": "BALOO_60",
"file": "Baloo2-Bold.ttf",
"characterRegex": "[0-9]"
},
{
"type": "font",
"name": "ALATSI_56",
"file": "Alatsi-Regular.ttf",
"characterRegex": "[0-9]"
},
{
"type": "raw",
"name": "W_CLEAR_DAY",
"file": "weather-icons/clear-day-s.pdc"
},
{
"type": "raw",
"name": "W_CLEAR_NIGHT",
"file": "weather-icons/clear-night-s.pdc"
},
{
"type": "raw",
"name": "W_CLOUDY",
"file": "weather-icons/cloudy-s.pdc"
},
{
"type": "raw",
"name": "W_FOG",
"file": "weather-icons/fog-s.pdc"
},
{
"type": "raw",
"name": "W_PARTLY_CLOUDY_DAY",
"file": "weather-icons/partly-cloudy-day-s.pdc"
},
{
"type": "raw",
"name": "W_PARTLY_CLOUDY_NIGHT",
"file": "weather-icons/partly-cloudy-night-s.pdc"
},
{
"type": "raw",
"name": "W_RAIN",
"file": "weather-icons/rain-s.pdc"
},
{
"type": "raw",
"name": "W_SLEET",
"file": "weather-icons/sleet-s.pdc"
},
{
"type": "raw",
"name": "W_SNOW",
"file": "weather-icons/snow-s.pdc"
},
{
"type": "raw",
"name": "W_WIND",
"file": "weather-icons/wind-s.pdc"
}
]
}
}
}