-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 919 Bytes
/
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
{
"name": "dot-clock",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"devDependencies": {
"@fitbit/sdk": "^4.2.0",
"@fitbit/sdk-cli": "^1.7.1",
"eslint": "^7.7.0",
"prettier": "^2.0.2"
},
"fitbit": {
"appUUID": "a531b55c-2b2e-401a-8621-b05b6efe288f",
"appType": "clockface",
"appDisplayName": "Pixel Retro",
"iconFile": "resources/icon.png",
"wipeColor": "#ffffff",
"requestedPermissions": [
"access_heart_rate",
"access_activity"
],
"buildTargets": [
"meson",
"gemini",
"mira"
],
"i18n": {},
"defaultLanguage": "en-US"
},
"scripts": {
"build": "fitbit-build",
"debug": "fitbit",
"lint": "eslint .",
"format": "prettier --single-quote --trailing-comma es5 -l ./app",
"format-write": "prettier --single-quote --trailing-comma es5 --write -l ./app"
},
"dependencies": {}
}