mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-06-21 12:41:47 +00:00
65 lines
2.0 KiB
JSON
65 lines
2.0 KiB
JSON
{
|
|
"name": "zigbee2mqtt",
|
|
"version": "2.12.0-dev",
|
|
"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": {
|
|
"zigbee-herdsman": "10.4.1",
|
|
"zigbee-herdsman-converters": "26.70.0"
|
|
},
|
|
"devDependencies": {},
|
|
"pnpm": {
|
|
"overrides": {
|
|
"zigbee-herdsman": "$zigbee-herdsman"
|
|
},
|
|
"onlyBuiltDependencies": [
|
|
"@biomejs/biome",
|
|
"@serialport/bindings-cpp",
|
|
"esbuild",
|
|
"unix-dgram"
|
|
]
|
|
},
|
|
"bin": {
|
|
"zigbee2mqtt": "cli.js"
|
|
},
|
|
"optionalDependencies": {}
|
|
}
|