forked from freakified/RPNCalculatorFitbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·63 lines (63 loc) · 1.15 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
{
"name": "Calculator",
"version": "0.1.1",
"private": true,
"license": "UNLICENSED",
"devDependencies": {
"@fitbit/sdk": "^6.2.0-pre.1",
"@fitbit/sdk-cli": "^1.8.0-pre.11"
},
"fitbit": {
"appUUID": "3bb0d7f7-44cd-4837-a983-c7f2d4c931a3",
"appType": "app",
"appDisplayName": "Calculator",
"iconFile": "resources/icon.png",
"wipeColor": "#ff5722",
"requestedPermissions": [],
"buildTargets": [
"atlas",
"vulcan",
"rhea",
"hera"
],
"i18n": {
"en": {
"name": "Calculator"
},
"de": {
"name": "Rechner"
},
"ja": {
"name": "電卓"
},
"es": {
"name": "Calculadora"
},
"fr": {
"name": "Calculatrice"
},
"it": {
"name": "Calcolatore"
},
"ko": {
"name": "계산자"
},
"nl": {
"name": "Rekenmachine"
},
"sv": {
"name": "Kalkylator"
},
"zh-cn": {
"name": "计算器"
},
"zh-tw": {
"name": "計算器"
}
}
},
"scripts": {
"build": "fitbit-build",
"debug": "fitbit"
}
}