-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.template.json
71 lines (71 loc) · 1.63 KB
/
package.template.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
{
"name": "Graphite",
"author": "Stefan Heule",
"version": "{{ version }}.0",
"private": true,
"keywords": [
"pebble-app"
],
"pebble": {
"displayName": "Graphite",
"sdkVersion": "3",
"targetPlatforms": [
## set targetPlatformsComma = joiner(",")
## for p in supported_platforms
{{ targetPlatformsComma() }} "{{ p }}"
## endfor
],
"resources": {
"media": [
{
"menuIcon": true,
"type": "png",
"name": "IMAGE_MENU_ICON",
"file": "menu_icon.png"
},
{
"type": "raw",
"name": "MAIN_FFONT",
"file": "OpenSans-CondensedBold.ffont"
},
{
"type": "raw",
"name": "ICON_FFONT",
"file": "fasubset.ffont"
},
{
"type": "raw",
"name": "WEATHER_FFONT",
"file": "nupe2.ffont"
}
]
},
"capabilities": [
"configurable", "health"
],
"projectType": "native",
"uuid": "7e5267ac-798f-4953-a645-1b87a5c29d96",
"messageKeys": {
## set messageKeysComma = joiner(",")
## for config in configuration
{{ messageKeysComma() }} "{{ config["key"] }}": {{ config["id"] }}
## endfor
## for key in message_keys
{{ messageKeysComma() }} "{{ key["key"] }}": {{ key["id"] }}
## endfor
},
"enableMultiJS": true,
"watchapp": {
"onlyShownOnCommunication": false,
"hiddenApp": false,
"watchface": true
}
},
"devDependencies": {
"pebble-fctx-compiler": "^1.2.2",
"fontello-cli": "^0.4.0"
},
"dependencies": {
"pebble-fctx": "^1.6.2"
}
}