zigbee-on-host
Version:
ZigBee stack designed to run on a host and communicate with a radio co-processor (RCP)
52 lines (51 loc) • 1.68 kB
JSON
{
"name": "zigbee-on-host",
"version": "0.1.12",
"description": "ZigBee stack designed to run on a host and communicate with a radio co-processor (RCP)",
"engines": {
"node": ">=20.17.0"
},
"files": [
"./dist"
],
"types": "./dist/drivers/ot-rcp-driver.d.ts",
"main": "./dist/drivers/ot-rcp-driver.js",
"scripts": {
"build": "tsc",
"build:prod": "tsc --project tsconfig.prod.json",
"test": "vitest run --config ./test/vitest.config.mts",
"test:cov": "vitest run --config ./test/vitest.config.mts --coverage",
"bench": "vitest bench --run --config ./test/vitest.config.mts",
"check": "biome check --write .",
"check:ci": "biome check .",
"clean": "rm -rf dist *.tsbuildinfo",
"dev:cli": "node dist/dev/cli.js",
"dev:z2z": "node dist/dev/z2mdata-to-zohsave.js",
"dev:z2r": "node dist/dev/zohsave-to-readable.js",
"prepack": "npm run clean && npm run build:prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nerivec/zigbee-on-host.git"
},
"keywords": [
"zigbee",
"host",
"stack",
"rcp"
],
"author": "Nerivec",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Nerivec/zigbee-on-host/issues"
},
"homepage": "https://github.com/Nerivec/zigbee-on-host#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.15.24",
"@vitest/coverage-v8": "^3.1.4",
"serialport": "^13.0.0",
"typescript": "^5.8.3",
"vitest": "^3.0.8"
}
}