-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.03 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": "pc-nrfconnect-npm",
"version": "1.3.1",
"description": "Evaluate and implement Nordic's PMICs",
"displayName": "nPM PowerUP",
"homepage": "https://github.com/NordicPlayground/pc-nrfconnect-npm",
"repository": {
"type": "git",
"url": "https://github.com/NordicSemiconductor/pc-nrfconnect-npm"
},
"author": "Nordic Semiconductor ASA",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"nrfconnect": ">=5.0.1"
},
"main": "dist/bundle.js",
"nrfConnectForDesktop": {
"nrfutil": {
"device": [
"2.6.4"
],
"npm": [
"0.3.0"
]
},
"html": "dist/index.html"
},
"files": [
"fw/*.hex",
"dist/",
"resources/*",
"LICENSE",
"Changelog.md"
],
"scripts": {
"watch": "run-p --silent --continue-on-error watch:*",
"watch:build": "run-esbuild --watch",
"watch:types": "tsc --noEmit --pretty --watch --preserveWatchOutput",
"build:dev": "run-esbuild",
"build:prod": "run-esbuild --prod",
"test": "jest",
"test:coverage": "jest --coverage",
"check": "run-p --silent --continue-on-error --print-label check:*",
"check:app": "check-app-properties",
"check:lint": "eslint --color .",
"check:types": "check-for-typescript tsc --noEmit --pretty",
"check:license": "nrfconnect-license check",
"nordic-publish": "node ./dist/nordic-publish.js",
"prepare": "husky install"
},
"devDependencies": {
"@nordicsemiconductor/pc-nrfconnect-shared": "^188.0.0",
"chart.js": "^4.0.1",
"chartjs-adapter-date-fns": "^2.0.1",
"react-chartjs-2": "^5.0.1",
"zod": "^3.22.2"
},
"eslintConfig": {
"extends": "./node_modules/@nordicsemiconductor/pc-nrfconnect-shared/config/eslintrc"
},
"prettier": "@nordicsemiconductor/pc-nrfconnect-shared/config/prettier.config.js",
"bundleDependencies": []
}