hap-nodejs
Version:
HAP-NodeJS is a Node.js implementation of HomeKit Accessory Server.
90 lines (89 loc) • 2.46 kB
JSON
{
"name": "hap-nodejs",
"version": "1.2.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",
"generate-definitions": "ts-node src/lib/definitions/generate-definitions.ts",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest",
"test-coverage": "jest --coverage",
"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 || ^22"
},
"files": [
"README.md",
"LICENSE",
"dist",
"@types"
],
"dependencies": {
"@homebridge/ciao": "^1.3.2",
"@homebridge/dbus-native": "^0.7.1",
"bonjour-hap": "^3.9.0",
"debug": "^4.4.1",
"fast-srp-hap": "^2.0.4",
"futoin-hkdf": "^1.5.3",
"node-persist": "^0.0.12",
"source-map-support": "^0.5.21",
"tslib": "^2.8.1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/escape-html": "^1.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.30",
"@types/plist": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"axios": "^1.9.0",
"commander": "^13.1.0",
"escape-html": "^1.0.3",
"eslint": "^8.57.1",
"http-parser-js": "^0.5.10",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"semver": "^7.7.2",
"simple-plist": "^1.4.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typedoc": "^0.28.5",
"typescript": "^5.8.3"
}
}