@project-chip/matter-node.js-examples 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +215 -0
- package/dist/examples/BridgedDevicesNode.js +218 -0
- package/dist/examples/BridgedDevicesNode.js.map +1 -0
- package/dist/examples/ComposedDeviceNode.js +217 -0
- package/dist/examples/ComposedDeviceNode.js.map +1 -0
- package/dist/examples/ControllerNode.js +261 -0
- package/dist/examples/ControllerNode.js.map +1 -0
- package/dist/examples/DeviceNode.js +358 -0
- package/dist/examples/DeviceNode.js.map +1 -0
- package/dist/examples/MultiDeviceNode.js +228 -0
- package/dist/examples/MultiDeviceNode.js.map +1 -0
- package/package.json +69 -0
package/package.json
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
{
|
2
|
+
"name": "@project-chip/matter-node.js-examples",
|
3
|
+
"version": "0.5.0",
|
4
|
+
"description": "CLI/Reference implementation scripts for Matter protocol for node.js",
|
5
|
+
"keywords": [
|
6
|
+
"iot",
|
7
|
+
"home automation",
|
8
|
+
"matter",
|
9
|
+
"smart device"
|
10
|
+
],
|
11
|
+
"license": "Apache-2.0",
|
12
|
+
"author": "Project CHIP Authors",
|
13
|
+
"contributors": [
|
14
|
+
"Martin Turon <mturon@google.com>",
|
15
|
+
"Marco Fucci di Napoli <mfucci@gmail.com>",
|
16
|
+
"Ingo Fischer <github@fischer-ka.de>"
|
17
|
+
],
|
18
|
+
"bugs": {
|
19
|
+
"url": "https://github.com/project-chip/matter.js/issues"
|
20
|
+
},
|
21
|
+
"homepage": "https://github.com/project-chip/matter.js",
|
22
|
+
"repository": {
|
23
|
+
"type": "git",
|
24
|
+
"url": "https://github.com/project-chip/matter.js.git"
|
25
|
+
},
|
26
|
+
"scripts": {
|
27
|
+
"clean": "rm -rf dist && rm -f *.tsbuildinfo",
|
28
|
+
"build": "tsc -b tsconfig.dist.json",
|
29
|
+
"build-clean": "npm run clean && npm run build",
|
30
|
+
"matter-device": "ts-node --project tsconfig.dist.json src/examples/DeviceNode.ts",
|
31
|
+
"matter-bridge": "ts-node --project tsconfig.dist.json src/examples/BridgedDevicesNode.ts",
|
32
|
+
"matter-composeddevice": "ts-node --project tsconfig.dist.json src/examples/ComposedDeviceNode.ts",
|
33
|
+
"matter-multidevice": "ts-node --project tsconfig.dist.json src/examples/MultiDeviceNode.ts",
|
34
|
+
"matter-controller": "ts-node --project tsconfig.dist.json src/examples/ControllerNode.ts",
|
35
|
+
"test": "true"
|
36
|
+
},
|
37
|
+
"bin": {
|
38
|
+
"matter-device": "./dist/examples/DeviceNode.js",
|
39
|
+
"matter-bridge": "./dist/examples/BridgedDevicesNode.js",
|
40
|
+
"matter-composeddevice": "./dist/examples/ComposedDeviceNode.js",
|
41
|
+
"matter-multidevice": "./dist/examples/MultiDeviceNode.js",
|
42
|
+
"matter-controller": "./dist/examples/ControllerNode.js"
|
43
|
+
},
|
44
|
+
"devDependencies": {
|
45
|
+
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
46
|
+
"@typescript-eslint/parser": "^5.62.0",
|
47
|
+
"eslint": "^8.47.0",
|
48
|
+
"eslint-import-resolver-typescript": "^3.6.0",
|
49
|
+
"eslint-plugin-import": "^2.28.1",
|
50
|
+
"ts-node": "^10.9.1",
|
51
|
+
"typescript": "^4.9.5"
|
52
|
+
},
|
53
|
+
"dependencies": {
|
54
|
+
"@project-chip/matter-node.js": "^0.5.0",
|
55
|
+
"@project-chip/matter-node-ble.js": "^0.5.0"
|
56
|
+
},
|
57
|
+
"engines": {
|
58
|
+
"_comment": "For Crypto.hkdf support",
|
59
|
+
"node": ">=16.0.0"
|
60
|
+
},
|
61
|
+
"files": [
|
62
|
+
"dist/**/*",
|
63
|
+
"LICENSE",
|
64
|
+
"README.md"
|
65
|
+
],
|
66
|
+
"publishConfig": {
|
67
|
+
"access": "public"
|
68
|
+
}
|
69
|
+
}
|