-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "@sammachin/node-red-matter-controller",
"version": "0.1.6",
"description": "Matter Device Controller for Node-RED",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammachin/node-red-matter-controller.git"
},
"keywords": [
"node-red"
],
"author": "Sam Machin",
"license": "MIT",
"bugs": {
"url": "https://github.com/sammachin/node-red-matter-controller/issues"
},
"engines": {
"node": ">=18.0.0"
},
"homepage": "https://github.com/sammachin/node-red-matter-controller#readme",
"dependencies": {
"@matter/main": "^0.11.9",
"@project-chip/matter.js": "^0.11.9"
},
"node-red": {
"version": ">=3.0.0",
"nodes": {
"matter-controller": "controller.js",
"matter-manager": "manager.js",
"matter-command": "command.js",
"matter-readattr": "read_attribute.js",
"matter-writeattr": "write_attribute.js",
"matter-editorapis": "editor_apis.js",
"matter-subscribe": "subscribe.js",
"matter-event": "event.js"
}
}
}