-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 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
{
"name": "@sammachin/node-red-matter-bridge",
"version": "0.12.0",
"description": "Node red package for implementing a matter bridge",
"main": "index.js",
"author": "Sam Machin",
"license": "MIT",
"repository": "https://github.com/sammachin/node-red-matter-bridge",
"dependencies": {
"@matter/main": "^0.11.9",
"traverse": "^0.6.10"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"node-red"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"matter-bridge": "bridge.js",
"matter-onofflight": "onofflight.js",
"matter-onoffsocket": "onoffsocket.js",
"matter-dimmablelight": "dimmablelight.js",
"matter-fullcolorlight": "fullcolorlight.js",
"matter-colortemplight": "colortemplight.js",
"matter-contactsensor": "contactsensor.js",
"matter-lightsensor": "lightsensor.js",
"matter-temperaturesensor": "temperaturesensor.js",
"matter-occupancysensor": "occupancysensor.js",
"matter-pressuresensor": "pressuresensor.js",
"matter-humiditysensor": "humiditysensor.js",
"matter-genercswitch": "genericswitch.js",
"matter-windowcovering": "windowcovering.js",
"matter-thermostat": "thermostat.js",
"matter-doorlock": "doorlock.js",
"matter-fan": "fan.js"
}
}
}