-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1020 Bytes
/
package.json
File metadata and controls
52 lines (52 loc) · 1020 Bytes
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
{
"name": "rotation",
"author": "Deans-Code",
"version": "1.0.0",
"keywords": [
"pebble-watchface"
],
"private": true,
"dependencies": {
"pebble-events": "^1.2.0",
"pebble-packet": "^1.3.2"
},
"pebble": {
"displayName": "rotation",
"uuid": "65b99426-7654-49e2-9b96-42a535a49eae",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"aplite",
"basalt",
"chalk",
"diorite",
"emery"
],
"watchapp": {
"watchface": true
},
"messageKeys": [
"COMMAND_SUN",
"RESULT_SUNRISE",
"RESULT_SUNSET"
],
"capabilities": [
"location"
],
"resources": {
"media": [
{
"type": "font",
"name": "FONT_PERFECT_DOS_20",
"file": "fonts/perfect-dos-vga.ttf",
"compatibility": "2.7"
},
{
"type": "bitmap",
"name": "IMAGE_BACKGROUND",
"file": "images/background.png"
}
]
}
}
}