{
  "name": "@caplaz/eufy-security-client",
  "version": "0.3.1",
  "description": "WebSocket client library for communicating with eufy-security-ws server with type-safe event handling and device management for Eufy security cameras",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "tsc --build",
    "build:watch": "tsc --build --watch",
    "build:incremental": "tsc --build --incremental",
    "test": "jest --reporters=default --reporters=jest-junit --passWithNoTests",
    "test:watch": "jest --watch --reporters=default --reporters=jest-junit",
    "test:coverage": "jest --coverage --reporters=default --reporters=jest-junit",
    "test:unit": "jest --testPathPattern=unit --passWithNoTests",
    "test:integration": "jest --testPathPattern=integration --passWithNoTests",
    "clean": "rm -rf dist coverage .tsbuildinfo tsconfig.tsbuildinfo",
    "typecheck": "tsc --noEmit --skipLibCheck",
    "dev": "tsc --build --watch",
    "lint": "npx eslint src/**/*.ts --max-warnings 0 --cache",
    "lint:fix": "eslint src/**/*.ts --fix --cache",
    "format": "prettier --write src/**/*.ts --cache",
    "format:check": "prettier --check src/**/*.ts --cache",
    "prepare": "npm run build",
    "prepublishOnly": "npm run test && npm run build"
  },
  "keywords": [
    "eufy",
    "security",
    "websocket",
    "client",
    "camera",
    "typescript"
  ],
  "author": {
    "name": "Stefano Acerbetti",
    "email": "stefano@caplaz.com",
    "url": "https://www.caplaz.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/caplaz/eufy-security-scrypted.git",
    "directory": "packages/eufy-security-client"
  },
  "bugs": {
    "url": "https://github.com/caplaz/eufy-security-scrypted/issues"
  },
  "homepage": "https://github.com/caplaz/eufy-security-scrypted/tree/main/packages/eufy-security-client#readme",
  "dependencies": {
    "tslog": "^4.9.3",
    "ws": "^8.18.2"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^25.0.0",
    "@types/ws": "^8.18.1",
    "@typescript-eslint/eslint-plugin": "^8.58.2",
    "@typescript-eslint/parser": "^8.58.2",
    "eslint": "^10.2.1",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "prettier": "^3.8.3",
    "ts-jest": "^29.4.9",
    "typescript": "^6.0.0"
  },
  "peerDependencies": {
    "typescript": ">=4.5.0"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "gitHead": "4d7baff5394082d4f50c661404d2962f0da84791"
}
