UNPKG

zigbee-herdsman-converters

Version:

Collection of device converters to be used with zigbee-herdsman

67 lines 1.92 kB
{ "name": "zigbee-herdsman-converters", "version": "26.38.1", "description": "Collection of device converters to be used with zigbee-herdsman", "main": "dist/index.js", "types": "dist/index.d.ts", "engines": { "node": ">=20.15.0" }, "files": [ "dist", "CHANGELOG.md" ], "repository": { "type": "git", "url": "git+https://github.com/Koenkk/zigbee-herdsman-converters.git" }, "keywords": [ "aqara", "tradfri", "hue", "wemo", "zigbee", "zigbee-shepherd" ], "author": "Koen Kanters", "license": "MIT", "bugs": { "url": "https://github.com/Koenkk/zigbee-herdsman-converters/issues" }, "homepage": "https://github.com/Koenkk/zigbee-herdsman-converters", "dependencies": { "iconv-lite": "^0.7.2", "semver": "^7.7.4", "zigbee-herdsman": "^10.0.7" }, "exports": { ".": "./dist/index.js", "./converters/*": "./dist/converters/*.js", "./devices/*": "./dist/devices/*.js", "./lib/*": "./dist/lib/*.js", "./package.json": "./package.json" }, "devDependencies": { "@biomejs/biome": "^2.4.12", "@types/node": "^24.12.2", "@types/semver": "^7.7.1", "@vitest/coverage-v8": "3.2.4", "fast-deep-equal": "^3.1.3", "husky": "^9.1.7", "rimraf": "^6.1.3", "ts-morph": "^28.0.0", "tsc-watch": "^7.2.0", "typescript": "^6.0.3", "vitest": "^3.1.1" }, "scripts": { "check": "biome check --error-on-warnings", "check:w": "biome check --error-on-warnings --write", "test": "vitest run --config ./test/vitest.config.mts", "test:coverage": "vitest run --config ./test/vitest.config.mts --coverage", "bench": "vitest bench --run --config ./test/vitest.config.mts", "clean": "rimraf coverage dist tsconfig.tsbuildinfo models-index.json", "build": "tsc && node dist/indexer.js", "build:watch": "tsc-watch --onSuccess 'node dist/indexer.js'" } }