hap-nodejs
Version: 
HAP-NodeJS is a Node.js implementation of HomeKit Accessory Server.
90 lines (89 loc) • 2.41 kB
JSON
{
  "name": "hap-nodejs",
  "version": "1.1.0",
  "description": "HAP-NodeJS is a Node.js implementation of HomeKit Accessory Server.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "maintainers": [
    "Andreas Bauer <mail@anderl-bauer.de>"
  ],
  "author": "Khaos Tian <khaos.tian@gmail.com> (https://tz.is/)",
  "homepage": "https://github.com/homebridge/HAP-NodeJS",
  "license": "Apache-2.0",
  "scripts": {
    "check": "npm install && npm outdated",
    "clean": "rimraf dist && rimraf coverage",
    "lint": "eslint 'src/**/*.{js,ts,json}'",
    "build": "rimraf dist && tsc && node .github/node-persist-ignore.js",
    "prepublishOnly": "npm run build",
    "postpublish": "npm run clean",
    "test": "jest",
    "test-coverage": "jest --coverage",
    "start": "node dist/BridgedCore.js",
    "docs": "typedoc",
    "lint-docs": "typedoc --emit none --treatWarningsAsErrors"
  },
  "keywords": [
    "hap-nodejs",
    "hap",
    "homekit",
    "homekit-accessory-protocol",
    "homekit-server",
    "homekit-protocol",
    "homekit-device",
    "homekit-accessory",
    "hap-server",
    "homekit-support",
    "siri"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/homebridge/HAP-NodeJS.git"
  },
  "bugs": {
    "url": "https://github.com/homebridge/HAP-NodeJS/issues"
  },
  "engines": {
    "node": "^18 || ^20"
  },
  "files": [
    "README.md",
    "LICENSE",
    "dist",
    "@types"
  ],
  "dependencies": {
    "@homebridge/ciao": "^1.3.0",
    "@homebridge/dbus-native": "^0.6.0",
    "bonjour-hap": "^3.8.0",
    "debug": "^4.3.5",
    "fast-srp-hap": "^2.0.4",
    "futoin-hkdf": "^1.5.3",
    "node-persist": "^0.0.12",
    "source-map-support": "^0.5.21",
    "tslib": "^2.6.3",
    "tweetnacl": "^1.0.3"
  },
  "devDependencies": {
    "@types/debug": "^4.1.12",
    "@types/escape-html": "^1.0.4",
    "@types/jest": "^29.5.12",
    "@types/node": "^20.14.11",
    "@types/plist": "^3.0.5",
    "@typescript-eslint/eslint-plugin": "^7.16.1",
    "@typescript-eslint/parser": "^7.16.1",
    "axios": "^1.7.2",
    "commander": "^12.1.0",
    "escape-html": "^1.0.3",
    "eslint": "^8.57.0",
    "http-parser-js": "^0.5.8",
    "jest": "^29.7.0",
    "rimraf": "^6.0.1",
    "semver": "^7.6.3",
    "simple-plist": "^1.4.0-0",
    "ts-jest": "^29.2.3",
    "ts-node": "^10.9.2",
    "typedoc": "^0.26.5",
    "typescript": "^5.5.3"
  }
}