-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
80 lines (80 loc) · 2.47 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "zigbee-adapter",
"version": "0.22.0",
"description": "Zigbee device support, via USB dongle or external Zigbee2MQTT instance.",
"author": "WebThingsIO",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"prettier": "prettier -u -w src",
"build": "node generate-config-interfaces.js && rm -rf lib && cp -rL src lib && find lib -name '*.ts' -delete && tsc -p ."
},
"homepage": "https://github.com/WebThingsIO/zigbee-adapter",
"dependencies": {
"bl": "^4.1.0",
"buffer-reader": "^0.1.0",
"clone-deep": "^4.0.1",
"color": "^3.1.3",
"command-line-args": "^5.1.1",
"deconz-api": "github:WebThingsIO/deconz-api",
"dissolve": "github:WebThingsIO/dissolve#moziot-changes",
"dissolve-chunks": "github:WebThingsIO/dissolve-chunks#moziot-changes",
"mkdirp": "^1.0.4",
"mqtt": "^4.2.6",
"serial-prober": "github:WebThingsIO/serial-prober-node",
"unpi": "github:WebThingsIO/unpi#moziot-changes",
"xbee-api": "^0.6.0",
"zcl-id": "github:WebThingsIO/zcl-id#moziot-changes",
"zcl-packet": "github:WebThingsIO/zcl-packet#moziot-changes",
"zigbee-zdo": "github:WebThingsIO/zigbee-zdo"
},
"devDependencies": {
"@types/clone-deep": "^4.0.1",
"@types/color": "^3.0.1",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"gateway-addon": "^1.2.0-alpha.1",
"json-schema-to-typescript": "^10.1.3",
"prettier": "^2.2.1",
"typescript": "^4.1.5"
},
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/WebThingsIO/zigbee-adapter.git"
},
"bugs": {
"url": "https://github.com/WebThingsIO/zigbee-adapter/issues"
},
"files": [
"LICENSE",
"README.md",
"SHA256SUMS",
"lib/driver/index.js",
"lib/driver/conbee.js",
"lib/driver/xbee.js",
"lib/driver/zstack.js",
"lib/constants.js",
"lib/index.js",
"lib/manifest.json",
"lib/zb-adapter.js",
"lib/zb-at.js",
"lib/zb-classifier.js",
"lib/zb-constants.js",
"lib/zb-debug.js",
"lib/zb-families.js",
"lib/zb-family.js",
"lib/zb-node.js",
"lib/zb-property.js",
"lib/zb-xiaomi.js",
"lib/zigbee2mqtt/zigbee2mqtt-adapter.js",
"lib/zigbee2mqtt/zigbee2mqtt-device.js",
"lib/zigbee2mqtt/zigbee2mqtt-driver.js",
"lib/zigbee2mqtt/zigbee2mqtt-property.js",
"manifest.json",
"node_modules"
]
}