forked from nordicsemi/pc-nrfconnect-matter-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.19 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.19 KB
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
64
65
66
67
{
"name": "pc-nrfconnect-matter-quickstart",
"version": "1.0.1",
"description": "Get started with a new Nordic Semiconductor Matter device",
"displayName": "Matter Quick Start",
"homepage": "https://github.com/NordicSemiconductor/pc-nrfconnect-matter-quickstart",
"repository": {
"type": "git",
"url": "https://github.com/NordicSemiconductor/pc-nrfconnect-matter-quickstart.git"
},
"author": "Nordic Semiconductor ASA",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"nrfconnect": ">=5.2.0"
},
"ncs_revision": "3.1.0",
"main": "dist/bundle.js",
"nrfConnectForDesktop": {
"supportedDevices": [
"PCA10090",
"PCA10153"
],
"html": "dist/index.html",
"nrfutil": {
"device": [
"2.14.2"
]
},
"nrfutilCore": "8.1.1",
"fixedSize": {
"width": 1200,
"height": 768
}
},
"files": [
"dist/",
"LICENSE",
"resources/*",
"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 --passWithNoTests",
"fix": "eslint --fix .",
"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",
"regenerate": "./scripts/regenerate_hexs.sh"
},
"prettier": "@nordicsemiconductor/pc-nrfconnect-shared/config/prettier.config.js",
"devDependencies": {
"@nordicsemiconductor/pc-nrfconnect-shared": "^227.0.0",
"number-to-words": "^1.2.4",
"@types/qrcode": "^1.5.5",
"cbor": "^10.0.10",
"qrcode": "^1.5.3",
"remark-gfm": "^3.0.1"
}
}