mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-06-20 04:01:45 +00:00
103 lines
3.2 KiB
JSON
103 lines
3.2 KiB
JSON
{
|
|
"name": "zigbee2mqtt",
|
|
"version": "2.12.0",
|
|
"description": "Zigbee to MQTT bridge using Zigbee-herdsman",
|
|
"main": "index.js",
|
|
"types": "dist/types/api.d.ts",
|
|
"packageManager": "pnpm@10.18.3",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Koenkk/zigbee2mqtt.git"
|
|
},
|
|
"engines": {
|
|
"node": "^20.15.0 || ^22.2.0 || ^24"
|
|
},
|
|
"keywords": [
|
|
"xiaomi",
|
|
"tradfri",
|
|
"hue",
|
|
"bridge",
|
|
"zigbee",
|
|
"mqtt",
|
|
"cc2531"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc && node index.js writehash",
|
|
"build:types": "pnpm run clean && tsc --project tsconfig.types.json && cp lib/util/settings.schema.json dist/util",
|
|
"build:watch": "tsc --watch",
|
|
"check": "biome check --error-on-warnings",
|
|
"check:w": "biome check --write",
|
|
"start": "node index.js",
|
|
"test": "vitest run --config ./test/vitest.config.mts",
|
|
"test:coverage": "vitest run --config ./test/vitest.config.mts --coverage",
|
|
"test:watch": "vitest watch --config ./test/vitest.config.mts",
|
|
"bench": "vitest bench --run --config ./test/vitest.config.mts",
|
|
"prepack": "pnpm run clean && pnpm run build",
|
|
"clean": "rimraf coverage dist tsconfig.tsbuildinfo"
|
|
},
|
|
"author": "Koen Kanters",
|
|
"license": "GPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/Koenkk/zigbee2mqtt/issues"
|
|
},
|
|
"homepage": "https://koenkk.github.io/zigbee2mqtt",
|
|
"dependencies": {
|
|
"ajv": "^8.20.0",
|
|
"bind-decorator": "^1.0.11",
|
|
"debounce": "^3.0.0",
|
|
"express-static-gzip": "^3.0.1",
|
|
"fast-deep-equal": "^3.1.3",
|
|
"finalhandler": "^2.1.1",
|
|
"humanize-duration": "^3.33.2",
|
|
"js-yaml": "^4.2.0",
|
|
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
"jszip": "^3.10.1",
|
|
"mqtt": "^5.15.1",
|
|
"object-assign-deep": "^0.4.0",
|
|
"rimraf": "^6.1.3",
|
|
"semver": "^7.8.3",
|
|
"source-map-support": "^0.5.21",
|
|
"throttleit": "^2.1.0",
|
|
"winston": "^3.19.0",
|
|
"winston-syslog": "^2.7.1",
|
|
"winston-transport": "^4.9.0",
|
|
"ws": "^8.21.0",
|
|
"zigbee-herdsman": "10.4.0",
|
|
"zigbee-herdsman-converters": "26.63.0",
|
|
"zigbee2mqtt-frontend": "0.9.21",
|
|
"zigbee2mqtt-windfront": "2.12.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.4.16",
|
|
"@types/finalhandler": "^1.2.3",
|
|
"@types/humanize-duration": "^3.27.4",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^24.13.1",
|
|
"@types/object-assign-deep": "^0.4.3",
|
|
"@types/readable-stream": "4.0.23",
|
|
"@types/serve-static": "^2.2.0",
|
|
"@types/ws": "8.18.1",
|
|
"@vitest/coverage-v8": "^3.1.1",
|
|
"tmp": "^0.2.7",
|
|
"typescript": "^6.0.3",
|
|
"vitest": "^3.1.1"
|
|
},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"zigbee-herdsman": "$zigbee-herdsman"
|
|
},
|
|
"onlyBuiltDependencies": [
|
|
"@biomejs/biome",
|
|
"@serialport/bindings-cpp",
|
|
"esbuild",
|
|
"unix-dgram"
|
|
]
|
|
},
|
|
"bin": {
|
|
"zigbee2mqtt": "cli.js"
|
|
},
|
|
"optionalDependencies": {
|
|
"unix-dgram": "^2.0.7"
|
|
}
|
|
}
|