{
  "name": "freeathome-local-api-client",
  "version": "1.13.0",
  "preview": false,
  "description": "A client library for the BUSCH-JAEGER free@home local API implemented in TypeScript",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/lion-and-bear/freeathome-local-api-client.git"
  },
  "keywords": [
    "free@home",
    "freeathome",
    "buschjaeger",
    "busch-jaeger",
    "abb",
    "smarthome",
    "api-client",
    "typescript"
  ],
  "author": {
    "email": "info@philipgerke.com",
    "name": "Philip Gerke",
    "url": "https://www.philipgerke.com"
  },
  "homepage": "https://github.com/lion-and-bear/freeathome-local-api-client#readme",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lion-and-bear/freeathome-local-api-client/issues"
  },
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": {
        "test-cjs": "./dist/index.js",
        "test-esm": "./dist/index.mjs",
        "default": "./dist/index.js"
      },
      "import": {
        "test-cjs": "./dist/index.js",
        "test-esm": "./dist/index.mjs",
        "default": "./dist/index.mjs"
      }
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "rxjs": "^7.8.2",
    "ts-interface-checker": "^1.0.2",
    "ws": "^8.20.1"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.5",
    "@eslint/js": "^10.0.1",
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "@types/jasmine": "^6.0.0",
    "@types/node": "^24.12.4",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.59.3",
    "@typescript-eslint/parser": "^8.59.3",
    "c8": "^11.0.0",
    "eslint": "^10.4.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import-x": "^4.16.2",
    "eslint-plugin-n": "^18.0.1",
    "eslint-plugin-prettier": "^5.5.5",
    "eslint-plugin-promise": "^7.3.0",
    "globals": "^17.6.0",
    "jasmine": "^6.2.0",
    "jasmine-spec-reporter": "^7.0.0",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "ts-interface-builder": "^0.3.3",
    "ts-loader": "^9.5.7",
    "ts-node": "^10.9.2",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3"
  },
  "scripts": {
    "clean": "rimraf dist coverage",
    "build": "pnpm clean && tsup --config tsup.config.ts",
    "build:test": "pnpm clean && tsup --config tsup.test.config.ts",
    "test:esm": "NODE_OPTIONS=\"--conditions=test-esm\" jasmine --config=jasmine.json",
    "test:cjs": "NODE_OPTIONS=\"--conditions=test-cjs\" jasmine --config=jasmine.json",
    "test:coverage": "pnpm build:test && c8 pnpm run test:cjs",
    "lint": "eslint . --fix --max-warnings=0"
  }
}