-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "7-segment",
"version": "2.0.4",
"private": true,
"license": "UNLICENSED",
"devDependencies": {
"@fitbit/sdk": "^6.1.0",
"@fitbit/sdk-cli": "^1.7.3",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"fitbit-sdk-types": "^7.0.5",
"prettier": "^2.7.1"
},
"fitbit": {
"appUUID": "da4ced63-b88e-4d4d-b15f-e45411e18d10",
"appType": "clockface",
"appDisplayName": "7 Segment",
"iconFile": "resources/icon.png",
"wipeColor": "#ffffff",
"requestedPermissions": [
"access_aod"
],
"buildTargets": [
"atlas",
"vulcan"
],
"i18n": {},
"defaultLanguage": "en-US"
},
"scripts": {
"prettier": "prettier **/*.ts **/*.tsx **/*.json **/*.md **/*.defs -l",
"lint": "eslint --max-warnings 0 app/**/*.ts companion/**/*.ts settings/**/*.tsx",
"check-code": "npm run lint && npm run prettier",
"fix-code": "npm run lint -- --fix && npm run prettier -- --write",
"build": "fitbit-build",
"debug": "fitbit"
},
"dependencies": {
"fitbit-widgets": "^1.0.3"
},
"packageManager": "[email protected]"
}