-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.3 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.3 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
{
"name": "pc-nrfconnect-matter-cluster-editor",
"version": "1.0.0",
"description": "Tool for creating and editing manufacturer-specific clusters and data model extensions in Matter",
"displayName": "Matter Cluster Editor",
"author": "Nordic Semiconductor ASA",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/NordicSemiconductor/pc-nrfconnect-matter-cluster-editor",
"repository": {
"type": "git",
"url": "https://github.com/NordicSemiconductor/pc-nrfconnect-matter-cluster-editor.git"
},
"engines": {
"nrfconnect": ">=4.3.0"
},
"nrfConnectForDesktop": {
"html": "dist/index.html"
},
"main": "dist/bundle.js",
"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"
},
"devDependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "6.4.3",
"@mui/material": "6.4.3",
"@nordicsemiconductor/pc-nrfconnect-shared": "^204.0.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"@types/react-test-renderer": "18.0.0",
"@types/xml2js": "^0.4.7",
"axios": "^1.8.4",
"xml2js": "^0.6.2",
"fast-xml-parser": "^5.0.9"
},
"prettier": "@nordicsemiconductor/pc-nrfconnect-shared/config/prettier.config.js",
"dependencies": {
"node-watch": "^0.7.3"
}
}