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": "metronommle",
"author": "Reiner Herrmann",
"version": "0.2.0",
"keywords": [
"pebble-app"
],
"private": true,
"capabilities": [
"configurable"
],
"dependencies": {
"@rebble/clay": "^1.0.10"
},
"pebble": {
"displayName": "Metronommle",
"uuid": "e50eb510-a9eb-4d30-94f6-cbec496ded0b",
"sdkVersion": "3",
"enableMultiJS": true,
"targetPlatforms": [
"emery"
],
"watchapp": {
"watchface": false
},
"messageKeys": [
"bpm",
"beats",
"volume",
"beat_indicators[3]"
],
"resources": {
"media": [
{
"type": "png",
"name": "LEFT_ARROWS",
"file": "images/left_arrows.png"
},
{
"type": "png",
"name": "RIGHT_ARROWS",
"file": "images/right_arrows.png"
},
{
"type": "png",
"name": "PLUS",
"file": "images/plus.png"
},
{
"type": "png",
"name": "MINUS",
"file": "images/minus.png"
},
{
"type": "png",
"name": "THREE_DOTS",
"file": "images/three_dots.png"
},
{
"type": "png",
"name": "PAUSE",
"file": "images/pause.png"
},
{
"type": "png",
"name": "PLAY",
"file": "images/play.png"
}
]
}
}
}
|