{
  "author": {
    "name": "Koen Kanters",
    "email": "koenkanters94@gmail.com"
  },
  "bugs": {
    "url": "https://github.com/koenkk/zigbee-herdsman/issues"
  },
  "contributors": [
    {
      "name": "Koen Kanters",
      "email": "koenkanters94@gmail.com"
    },
    {
      "name": "Hedy Wang",
      "email": "hedywings@gmail.com"
    },
    {
      "name": "Simen Li",
      "email": "simenkid@gmail.com"
    },
    {
      "name": "Jack Wu",
      "email": "jackchased@gmail.com"
    }
  ],
  "dependencies": {
    "@serialport/bindings-cpp": "^12.0.1",
    "@serialport/parser-delimiter": "^12.0.0",
    "@serialport/stream": "^12.0.0",
    "bonjour-service": "^1.2.1",
    "debounce": "^2.1.1",
    "fast-deep-equal": "^3.1.3",
    "mixin-deep": "^2.0.1",
    "slip": "^1.0.2"
  },
  "deprecated": false,
  "description": "An open source ZigBee gateway solution with node.js.",
  "devDependencies": {
    "@babel/cli": "^7.25.7",
    "@babel/core": "^7.25.8",
    "@babel/preset-env": "^7.25.8",
    "@babel/preset-typescript": "^7.25.7",
    "@eslint/core": "^0.6.0",
    "@eslint/js": "^9.12.0",
    "@ianvs/prettier-plugin-sort-imports": "^4.3.1",
    "@serialport/binding-mock": "^10.2.2",
    "@types/debounce": "^1.2.4",
    "@types/eslint__js": "^8.42.3",
    "@types/jest": "^29.5.13",
    "@types/mz": "^2.7.8",
    "@types/nedb": "^1.8.16",
    "@types/node": "^22.7.5",
    "babel-jest": "^29.7.0",
    "eslint": "^9.12.0",
    "eslint-config-prettier": "^9.1.0",
    "jest": "^29.7.0",
    "prettier": "^3.3.3",
    "regenerator-runtime": "^0.14.1",
    "rimraf": "^6.0.1",
    "typedoc": "^0.26.9",
    "typedoc-plugin-markdown": "^4.2.9",
    "typedoc-plugin-no-inherit": "^1.4.0",
    "typescript": "^5.6.3",
    "typescript-eslint": "^8.8.1"
  },
  "homepage": "https://github.com/Koenkk/zigbee-herdsman",
  "keywords": [
    "zigbee",
    "zstack",
    "emberznet",
    "deconz",
    "zigate"
  ],
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "name": "zigbee-herdsman",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Koenkk/zigbee-herdsman.git"
  },
  "version": "3.0.0-pre.0",
  "jest": {
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "collectCoverageFrom": [
      "src/**/*.ts"
    ]
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc -w",
    "test": "jest test --silent --maxWorkers=50%",
    "test-with-coverage": "jest test --silent --maxWorkers=50% --coverage",
    "test-watch": "jest test --silent --maxWorkers=25% --watch",
    "eslint": "eslint --max-warnings=0",
    "pretty:write": "prettier --write .",
    "pretty:check": "prettier --check .",
    "typedoc": "typedoc --gitRevision $(git describe --tag --abbrev=0) --tsconfig tsconfig.json --excludePrivate --excludeProtected --excludeExternals --entryPointStrategy expand ./src --sourceLinkTemplate 'https://github.com/Koenkk/zigbee-herdsman/blob/{gitRevision}/{path}#L{line}' -out typedoc",
    "clean": "rimraf temp coverage dist"
  }
}