-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 962 Bytes
/
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
{
"name": "watchface-tutorial",
"author": "MakeAwesomeHappen",
"version": "1.0.0",
"keywords": ["pebble-app"],
"private": true,
"dependencies": {},
"pebble": {
"displayName": "watchface-tutorial",
"uuid": "9d15a3db-bbec-4a06-afb3-e0842bf6c176",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"aplite",
"basalt",
"chalk",
"diorite"
],
"watchapp": {
"watchface": true
},
"messageKeys": [
"Conditions",
"Temperature"
],
"resources": {
"media": [
{
"type": "font",
"name": "FONT_PERFECT_DOS_48",
"file": "perfect-dos-vga.ttf"
},
{
"type": "font",
"name": "FONT_PERFECT_DOS_20",
"file": "perfect-dos-vga.ttf"
},
{
"type": "bitmap",
"name": "IMAGE_BACKGROUND",
"file": "background.png"
}
]
}
}
}