-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "slclock",
"version": "0.1.0",
"private": true,
"license": "MIT",
"devDependencies": {
"@fitbit/sdk": "~4.2.1",
"@fitbit/sdk-cli": "^1.7.3",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"fitbit-sdk-types": "~5.0.0",
"jest": "^26.4.2",
"prettier": "^2.1.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
},
"dependencies": {
"fitbit-asap": "^1.2.3"
},
"fitbit": {
"appUUID": "68a4bbf3-235c-4dc3-82d5-f85c51f5cf6b",
"appType": "clockface",
"appDisplayName": "SL Clock",
"iconFile": "resources/icon.png",
"wipeColor": "#ffffff",
"requestedPermissions": [
"access_heart_rate",
"access_activity",
"access_internet",
"access_location",
"access_user_profile",
"run_background"
],
"buildTargets": [
"mira"
],
"i18n": {},
"defaultLanguage": "en-US"
},
"scripts": {
"build": "fitbit-build",
"debug": "fitbit",
"test": "jest"
}
}