node-red-contrib-xmihome
Version:
Node-RED nodes for controlling Xiaomi Mi Home devices using the xmihome library.
58 lines (57 loc) • 1.27 kB
JSON
{
"name": "node-red-contrib-xmihome",
"version": "1.1.3",
"private": false,
"type": "module",
"description": "Node-RED nodes for controlling Xiaomi Mi Home devices using the xmihome library.",
"scripts": {
"test": "tsc -p ./jsconfig.json",
"build": "bun ./build.js",
"start": "node-red --settings settings.cjs",
"dev": "nodemon --exec 'bun run build && bun run start' --watch src --watch locales --watch docs -e js,json,html,md",
"prepublishOnly": "npm run build"
},
"files": [
"./dist/",
"./examples/"
],
"node-red": {
"version": ">=3.0.0",
"nodes": {
"config": "./dist/nodes/config.js",
"devices": "./dist/nodes/devices.js",
"device": "./dist/nodes/device.js"
}
},
"dependencies": {
"xmihome": "1.1.3"
},
"devDependencies": {
"@types/bun": "^1.2.17",
"@types/express": "^5.0.3",
"@types/node-red": "^1.3.5",
"node-red": "^4.0.9",
"nodemon": "^3.1.10"
},
"engines": {
"node": ">=18.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alex2844/node-xmihome.git",
"directory": "packages/node-red"
},
"keywords": [
"node-red",
"xmihome",
"xiaomi",
"mihome",
"miot",
"bluetooth",
"iot",
"smarthome",
"home-automation",
"node-red-contrib"
]
}