-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.69 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
{
"name": "@matter/nodejs-shell",
"version": "0.0.0-git",
"description": "Shell app for Matter controller",
"keywords": [
"iot",
"home automation",
"matter",
"smart device"
],
"license": "Apache-2.0",
"author": "matter.js authors",
"contributors": [
"Martin Turon <mturon@google.com>",
"Ingo Fischer <github@fischer-ka.de>"
],
"bugs": {
"url": "https://github.com/matter-js/matter.js/issues"
},
"homepage": "https://github.com/matter-js/matter.js",
"repository": {
"type": "git",
"url": "git+https://github.com/matter-js/matter.js.git"
},
"type": "module",
"scripts": {
"clean": "nacho-build clean",
"build": "nacho-build",
"build-clean": "nacho-build --clean",
"shell": "nacho-run src/app.ts",
"bundle-shell": "esbuild src/app.ts --bundle --platform=node --conditions=esbuild --external:@stoprocent/noble --external:@stoprocent/bluetooth-hci-socket --sourcemap --minify --keep-names --outfile=build/bundle/app.cjs"
},
"bin": {
"matter-shell": "dist/cjs/app.js"
},
"dependencies": {
"@matter/general": "*",
"@matter/model": "*",
"@matter/node": "*",
"@matter/nodejs": "*",
"@matter/nodejs-ble": "*",
"@matter/protocol": "*",
"@matter/types": "*",
"@project-chip/matter.js": "*",
"ws": "^8.20.0",
"yargs": "^18.0.0"
},
"engines": {
"node": ">=20.19.0 <22.0.0 || >=22.13.0"
},
"files": [
"dist/**/*",
"src/**/*",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}