{
  "name": "home-assistant-node-client",
  "version": "1.2.0",
  "description": "TypeScript/JavaScript SDK for Home Assistant: REST API, optional WebSocket subscriptions, state helpers, and simplified entity actions.",
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18"
  },
  "author": "Ahmed Hekal",
  "repository": {
    "type": "git",
    "url": "https://github.com/midoelhawy/home-assitent-node-client.git"
  },
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "test:rest_api_only": "env-cmd -f .env ts-node examples/rest-only.ts",
    "test:with_websocket": "env-cmd -f .env ts-node examples/with-websocket.ts",
    "release:patch": "npm run build && npm version patch && npm publish",
    "release:minor": "npm run build && npm version minor && npm publish",
    "release:major": "npm run build && npm version major && npm publish"
  },
  "keywords": [
    "home-assistant",
    "homeassistant",
    "home-assistant-rest",
    "websocket",
    "typescript",
    "sdk",
    "zwave"
  ],
  "license": "MIT",
  "dependencies": {
    "ws": "^8.18.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "@types/ws": "^8.5.13",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.2"
  }
}
