-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.86 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.86 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
{
"name": "2077",
"author": "Jeremy Payne",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/moddedBear/pebble-2077.git"
},
"license": "MIT",
"description": "A futuristic Pebble watch face inspired by Cyberpunk 2077",
"keywords": [
"pebble-app"
],
"private": true,
"dependencies": {
"pebble-clay": "^1.0.4"
},
"pebble": {
"displayName": "2077",
"uuid": "4a899827-8373-4bc3-8491-81b43a9c7616",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"aplite",
"basalt",
"diorite"
],
"watchapp": {
"watchface": true
},
"messageKeys": [
"TEMPERATURE",
"CONDITIONS",
"PREF_SHOW_STEPS",
"PREF_SHOW_WEATHER",
"PREF_WEATHER_METRIC",
"PREF_CUSTOM_TEXT",
"PREF_HOUR_VIBE",
"PREF_DISCONNECT_ALERT"
],
"capabilities": [
"configurable",
"health",
"location"
],
"resources": {
"media": [
{
"type": "bitmap",
"name": "MENU_ICON",
"file": "icon.png",
"menuIcon": true
},
{
"type": "font",
"name": "FONT_RAJDHANI_58",
"file": "fonts/Rajdhani-Regular.ttf",
"characterRegex": "[0-9:]"
},
{
"type": "font",
"name": "FONT_RAJDHANI_24",
"file": "fonts/Rajdhani-Regular.ttf",
"characterRegex": "[0-9]"
},
{
"type": "font",
"name": "FONT_ORBITRON_12",
"file": "fonts/Orbitron-Regular.ttf",
"characterRegex": "[ -~]"
},
{
"type": "bitmap",
"name": "IMAGE_HUD",
"file": "images/hud.png"
},
{
"type": "bitmap",
"name": "IMAGE_CHARGE",
"file": "images/charge.png"
}
]
}
}
}