UNPKG

homebridge

Version:
79 lines (78 loc) 2.13 kB
{ "name": "homebridge", "description": "HomeKit support for the impatient", "version": "1.11.0", "main": "lib/index.js", "types": "lib/index.d.ts", "license": "Apache-2.0", "author": "Nick Farina", "maintainers": [ "oznu <dev@oz.nu>", "Andreas Bauer <mail@anderl-bauer.de>" ], "scripts": { "build": "npm run clean && tsc", "check": "npm install && npm outdated", "clean": "npm install rimraf && rimraf lib/", "dev": "DEBUG=* ./bin/homebridge -D -P example-plugins/ || true", "docs": "typedoc", "lint": "eslint 'src/**/*.{js,ts,json}'", "lint:fix": "npm run lint -- --fix", "prepublishOnly": "npm run build", "postpublish": "npm run clean", "test": "jest --forceExit --detectOpenHandles", "test-coverage": "jest --coverage --forceExit --detectOpenHandles", "watch": "nodemon" }, "repository": { "type": "git", "url": "git://github.com/homebridge/homebridge.git" }, "bugs": { "url": "https://github.com/homebridge/homebridge/issues" }, "bin": { "homebridge": "bin/homebridge" }, "engines": { "node": "^18.15.0 || ^20.7.0 || ^22" }, "files": [ "README.md", "config-sample.json", "LICENSE", "lib", "bin" ], "preferGlobal": true, "dependencies": { "chalk": "4.1.2", "commander": "13.1.0", "fs-extra": "11.3.0", "hap-nodejs": "0.13.1", "qrcode-terminal": "0.12.0", "semver": "7.7.2", "source-map-support": "0.5.21" }, "devDependencies": { "@types/debug": "^4.1.12", "@types/fs-extra": "^11.0.4", "@types/jest": "^30.0.0", "@types/node": "^24.0.13", "@types/semver": "^7.7.0", "@types/source-map-support": "^0.5.10", "@typescript-eslint/eslint-plugin": "^8.36.0", "@typescript-eslint/parser": "^8.36.0", "eslint": "^8.57.1", "eslint-plugin-import": "^2.32.0", "eslint-plugin-import-newlines": "^1.4.0", "eslint-plugin-jest": "^29.0.1", "jest": "^30.0.4", "nodemon": "^3.1.10", "rimraf": "^6.0.1", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "typedoc": "^0.28.7", "typescript": "^5.8.3" } }