2023-06-01 06:15:24 -07:00
|
|
|
{
|
|
|
|
"name": "zigbee2mqtt",
|
2023-12-01 02:57:12 -07:00
|
|
|
"version": "1.34.0-dev",
|
2023-06-01 06:15:24 -07:00
|
|
|
"description": "Zigbee to MQTT bridge using Zigbee-herdsman",
|
|
|
|
"main": "index.js",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/Koenkk/zigbee2mqtt.git"
|
|
|
|
},
|
|
|
|
"engines": {
|
2023-12-04 11:29:35 -07:00
|
|
|
"node": "^18 || ^20 || ^21"
|
2023-06-01 06:15:24 -07:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"xiaomi",
|
|
|
|
"tradfri",
|
|
|
|
"hue",
|
|
|
|
"bridge",
|
|
|
|
"zigbee",
|
|
|
|
"mqtt",
|
|
|
|
"cc2531"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc && node index.js writehash",
|
|
|
|
"build-watch": "tsc --watch",
|
|
|
|
"eslint": "eslint lib/ --max-warnings=0",
|
|
|
|
"start": "node index.js",
|
|
|
|
"test-with-coverage": "jest test --coverage",
|
|
|
|
"test": "jest test",
|
2023-10-13 23:22:35 -07:00
|
|
|
"test-watch": "jest test --watch",
|
|
|
|
"clean": "rimraf coverage dist tsconfig.tsbuildinfo",
|
|
|
|
"prepack": "npm run clean && npm run build"
|
2023-06-01 06:15:24 -07:00
|
|
|
},
|
|
|
|
"author": "Koen Kanters",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Koenkk/zigbee2mqtt/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://koenkk.github.io/zigbee2mqtt",
|
|
|
|
"dependencies": {
|
|
|
|
"ajv": "^8.12.0",
|
|
|
|
"bind-decorator": "^1.0.11",
|
2023-12-11 11:24:36 -07:00
|
|
|
"connect-gzip-static": "3.0.1",
|
2023-11-27 13:36:06 -07:00
|
|
|
"debounce": "^2.0.0",
|
2023-06-01 06:15:24 -07:00
|
|
|
"deep-object-diff": "^1.1.9",
|
|
|
|
"fast-deep-equal": "^3.1.3",
|
|
|
|
"finalhandler": "^1.2.0",
|
|
|
|
"git-last-commit": "^1.0.1",
|
2023-11-12 13:37:34 -07:00
|
|
|
"humanize-duration": "^3.31.0",
|
2023-06-01 06:15:24 -07:00
|
|
|
"js-yaml": "^4.1.0",
|
|
|
|
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
|
|
"jszip": "^3.10.1",
|
|
|
|
"mkdir-recursive": "^0.4.0",
|
|
|
|
"moment": "^2.29.4",
|
2023-12-04 12:00:39 -07:00
|
|
|
"mqtt": "^5.3.2",
|
2023-06-01 06:15:24 -07:00
|
|
|
"object-assign-deep": "^0.4.0",
|
2023-10-03 01:38:48 -07:00
|
|
|
"rimraf": "^5.0.5",
|
2023-07-16 00:05:30 -07:00
|
|
|
"semver": "^7.5.4",
|
2023-06-01 06:15:24 -07:00
|
|
|
"source-map-support": "^0.5.21",
|
|
|
|
"uri-js": "^4.4.1",
|
2023-10-08 00:04:37 -07:00
|
|
|
"winston": "^3.11.0",
|
2023-06-01 06:15:24 -07:00
|
|
|
"winston-syslog": "^2.7.0",
|
2023-10-14 23:32:24 -07:00
|
|
|
"winston-transport": "^4.6.0",
|
2023-09-23 22:42:03 -07:00
|
|
|
"ws": "^8.14.2",
|
2023-12-10 12:37:42 -07:00
|
|
|
"zigbee-herdsman": "0.26.1",
|
2023-12-12 12:07:25 -07:00
|
|
|
"zigbee-herdsman-converters": "16.8.0",
|
2023-12-10 08:41:52 -07:00
|
|
|
"zigbee2mqtt-frontend": "0.6.149"
|
2023-06-01 06:15:24 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-02 12:13:41 -07:00
|
|
|
"@babel/core": "^7.23.5",
|
2023-06-01 06:15:24 -07:00
|
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
2023-12-02 12:13:41 -07:00
|
|
|
"@babel/plugin-proposal-decorators": "^7.23.5",
|
|
|
|
"@babel/preset-env": "^7.23.5",
|
2023-11-12 13:37:34 -07:00
|
|
|
"@babel/preset-typescript": "^7.23.3",
|
|
|
|
"@types/debounce": "^1.2.4",
|
|
|
|
"@types/finalhandler": "^1.2.3",
|
|
|
|
"@types/humanize-duration": "^3.27.3",
|
2023-11-27 13:36:06 -07:00
|
|
|
"@types/jest": "^29.5.10",
|
2023-11-12 13:37:34 -07:00
|
|
|
"@types/js-yaml": "^4.0.9",
|
2023-12-04 12:00:39 -07:00
|
|
|
"@types/node": "^20.10.3",
|
2023-11-12 13:37:34 -07:00
|
|
|
"@types/object-assign-deep": "^0.4.3",
|
2023-11-27 13:36:06 -07:00
|
|
|
"@types/readable-stream": "4.0.9",
|
2023-06-01 06:15:24 -07:00
|
|
|
"@types/rimraf": "^3.0.2",
|
2023-12-04 12:00:39 -07:00
|
|
|
"@types/ws": "8.5.10",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^6.13.2",
|
|
|
|
"@typescript-eslint/parser": "^6.13.2",
|
2023-09-16 23:46:52 -07:00
|
|
|
"babel-jest": "^29.7.0",
|
2023-12-02 12:13:41 -07:00
|
|
|
"eslint": "^8.55.0",
|
2023-06-01 06:15:24 -07:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2023-10-30 12:40:35 -07:00
|
|
|
"eslint-plugin-jest": "^27.6.0",
|
2023-09-16 23:46:52 -07:00
|
|
|
"jest": "^29.7.0",
|
2023-06-01 06:15:24 -07:00
|
|
|
"tmp": "^0.2.1",
|
2023-11-27 13:36:06 -07:00
|
|
|
"typescript": "^5.3.2"
|
2023-06-01 06:15:24 -07:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"coverageThreshold": {
|
|
|
|
"global": {
|
|
|
|
"branches": 100,
|
|
|
|
"functions": 100,
|
|
|
|
"lines": 100,
|
|
|
|
"statements": 100
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"lib/**/*.js",
|
|
|
|
"lib/**/*.ts"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"bin": {
|
|
|
|
"zigbee2mqtt": "cli.js"
|
|
|
|
}
|
|
|
|
}
|