mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2024-11-15 18:08:32 -07:00
a8a262640f
Co-authored-by: nurikk <1525421+nurikk@users.noreply.github.com>
116 lines
2.9 KiB
JSON
116 lines
2.9 KiB
JSON
{
|
|
"name": "zigbee2mqtt",
|
|
"version": "1.35.3-dev",
|
|
"description": "Zigbee to MQTT bridge using Zigbee-herdsman",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Koenkk/zigbee2mqtt.git"
|
|
},
|
|
"engines": {
|
|
"node": "^18 || ^20 || ^21"
|
|
},
|
|
"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",
|
|
"test-watch": "jest test --watch"
|
|
},
|
|
"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",
|
|
"connect-gzip-static": "3.0.1",
|
|
"debounce": "^2.0.0",
|
|
"deep-object-diff": "^1.1.9",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"finalhandler": "^1.2.0",
|
|
"git-last-commit": "^1.0.1",
|
|
"humanize-duration": "^3.31.0",
|
|
"js-yaml": "^4.1.0",
|
|
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
"jszip": "^3.10.1",
|
|
"mkdir-recursive": "^0.4.0",
|
|
"moment": "^2.30.1",
|
|
"mqtt": "^5.3.5",
|
|
"object-assign-deep": "^0.4.0",
|
|
"rimraf": "^5.0.5",
|
|
"semver": "^7.6.0",
|
|
"source-map-support": "^0.5.21",
|
|
"uri-js": "^4.4.1",
|
|
"winston": "^3.11.0",
|
|
"winston-syslog": "^2.7.0",
|
|
"winston-transport": "^4.7.0",
|
|
"ws": "^8.16.0",
|
|
"zigbee-herdsman": "0.35.0",
|
|
"zigbee-herdsman-converters": "18.41.0",
|
|
"zigbee2mqtt-frontend": "0.6.159"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.23.9",
|
|
"@babel/plugin-proposal-decorators": "^7.23.9",
|
|
"@babel/preset-env": "^7.23.9",
|
|
"@babel/preset-typescript": "^7.23.3",
|
|
"@types/debounce": "^1.2.4",
|
|
"@types/finalhandler": "^1.2.3",
|
|
"@types/humanize-duration": "^3.27.4",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20.11.20",
|
|
"@types/object-assign-deep": "^0.4.3",
|
|
"@types/readable-stream": "4.0.10",
|
|
"@types/ws": "8.5.10",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.2",
|
|
"@typescript-eslint/parser": "^7.0.2",
|
|
"babel-jest": "^29.7.0",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"eslint-plugin-jest": "^27.9.0",
|
|
"jest": "^29.7.0",
|
|
"tmp": "^0.2.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"overrides": {
|
|
"zigbee-herdsman-converters": {
|
|
"zigbee-herdsman": "$zigbee-herdsman"
|
|
}
|
|
},
|
|
"jest": {
|
|
"coverageThreshold": {
|
|
"global": {
|
|
"branches": 100,
|
|
"functions": 100,
|
|
"lines": 100,
|
|
"statements": 100
|
|
}
|
|
},
|
|
"collectCoverageFrom": [
|
|
"lib/**/*.js",
|
|
"lib/**/*.ts"
|
|
]
|
|
},
|
|
"bin": {
|
|
"zigbee2mqtt": "cli.js"
|
|
},
|
|
"optionalDependencies": {
|
|
"sd-notify": "^2.8.0"
|
|
}
|
|
}
|