mirror of
https://github.com/adrianjagielak/home-assistant-futurehome.git
synced 2025-09-13 07:37:09 +00:00
31 lines
775 B
JSON
31 lines
775 B
JSON
{
|
|
"name": "ha-futurehome-addon",
|
|
"version": "1.0.0",
|
|
"description": "Home Assistant add-on talking to Futurehome Smarthub via FIMP",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"lint": "eslint src/**/*.ts",
|
|
"build": "rimraf ./dist && tsc",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.11.0",
|
|
"mqtt": "^5.13.3",
|
|
"uuid": "^11.1.0",
|
|
"ws": "^8.18.3"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.31.0",
|
|
"@types/node": "^24.1.0",
|
|
"@types/ws": "^8.18.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.38.0",
|
|
"@typescript-eslint/parser": "^8.38.0",
|
|
"eslint": "^9.31.0",
|
|
"globals": "^16.3.0",
|
|
"rimraf": "^6.0.1",
|
|
"typescript": "^5.8.3",
|
|
"typescript-eslint": "^8.38.0"
|
|
},
|
|
"license": "MIT"
|
|
}
|