-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.62 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
{
"name": "pebble-stock-ticker",
"author": "swansswansswansswanssosoft",
"version": "1.0.0",
"keywords": [
"pebble-app"
],
"private": true,
"dependencies": {
"lodash": "^4.17.20",
"message-queue-pebble": "^1.0.0",
"moment": "^2.29.1",
"moment-timezone": "^0.5.32",
"pebble-battery-bar": "^1.0.10",
"pebble-bluetooth-icon": "^1.0.8",
"pebble-clay": "^1.0.4"
},
"pebble": {
"displayName": "Ticker",
"capabilities": [
"configurable"
],
"uuid": "06c17ce2-6785-456a-9722-7a0c2e35c38a",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"aplite",
"basalt",
"diorite"
],
"watchapp": {
"watchface": true
},
"messageKeys": {
"StockIndex": 100,
"StockSymbol": 101,
"StockPrice": 102,
"StockPriceChange": 103,
"StockVolume": 104,
"StockPriceHistory": 105,
"StockVolumeHistory": 106,
"DisplayMode": 200,
"StockMarketStatus": 201,
"DitherStyle": 202,
"AssetType": 203,
"RefreshInterval": 204,
"ClearFace": 300
},
"resources": {
"media": [
{
"file": "fonts/type_writer.ttf",
"name": "FONT_TYPE_WRITER_8",
"targetPlatforms": null,
"type": "font"
},
{
"file": "fonts/advanced_dot_digital.ttf",
"name": "DOT_DIGITAL_26",
"targetPlatforms": null,
"type": "font"
},
{
"menuIcon": true,
"type": "png",
"name": "IMAGE_MENU_ICON",
"file": "img/menu_icon.png"
}
]
}
}
}