28 lines
627 B
JSON
28 lines
627 B
JSON
{
|
|
"name": "openhab-z2m",
|
|
"version": "0.0.1",
|
|
"description": "Simple tool to push zigbee2mqtt devices (using Exposes MQTT API) to OpenHAB (using REST API)",
|
|
"main": "index.ts",
|
|
"scripts": {
|
|
"app": "tsx src/index.ts",
|
|
"build": "tsc && tsc-alias"
|
|
},
|
|
"bin": {
|
|
"oh-import": "./dist/index.js"
|
|
},
|
|
"author": "Bartłomiej Pluta",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@types/node": "^22.9.0",
|
|
"tsc-alias": "^1.8.10",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.7.7",
|
|
"commander": "^12.1.0",
|
|
"mqtt": "^5.10.1",
|
|
"yaml": "^2.6.0"
|
|
}
|
|
}
|