@homebridge-plugins/homebridge-plugin-update-check
Version:
A Homebridge plugin for checking for updates to Homebridge and plugins
105 lines (104 loc) • 3 kB
JSON
{
"name": "@homebridge-plugins/homebridge-plugin-update-check",
"displayName": "Homebridge Plugin Update Check",
"type": "module",
"version": "2.1.0",
"description": "A Homebridge plugin for checking for updates to Homebridge and plugins",
"author": "David Maher",
"license": "BSD-2-Clause",
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/sunookitsune"
},
{
"type": "paypal",
"url": "https://paypal.me/sunoo"
},
{
"type": "github",
"url": "https://github.com/Sunoo"
},
{
"type": "liberapay",
"url": "https://liberapay.com/Sunoo"
}
],
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/homebridge-plugins/homebridge-plugin-update-check#readme",
"repository": {
"type": "git",
"url": "https://github.com/homebridge-plugins/homebridge-plugin-update-check.git"
},
"bugs": {
"url": "https://github.com/homebridge-plugins/homebridge-plugin-update-check/issues"
},
"keywords": [
"homebridge-plugin",
"plugin",
"update",
"updates",
"upgrade",
"upgrades",
"version",
"versions"
],
"main": "dist/index.js",
"files": [
"LICENSE",
"README.md",
"config.schema.json",
"dist/**/*",
"package.json"
],
"engines": {
"homebridge": "^1.8.5 || ^2.0.0 || ^2.0.0-beta.23 || ^2.0.0-alpha.37",
"node": "^20 || ^22"
},
"scripts": {
"check": "npm install && npm outdated",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"watch": "npm run build && npm run plugin-ui && npm link && nodemon",
"plugin-ui": "rsync ./src/homebridge-ui/public/index.html ./dist/homebridge-ui/public/",
"build": "npm run clean && tsc && npm run plugin-ui",
"prepublishOnly": "npm run lint && npm run build && npm run plugin-ui && npm run docs && npm run docs:lint",
"postpublish": "npm run clean && npm ci",
"clean": "shx rm -rf ./dist",
"test": "npm install",
"test:watch": "vitest watch",
"test-coverage": "npm run test -- --coverage",
"docs": "typedoc",
"docs:lint": "typedoc --emit none --treatWarningsAsErrors"
},
"dependencies": {
"@homebridge/plugin-ui-utils": "^2.1.0",
"axios": "^1.11.0",
"jsonwebtoken": "^9.0.2",
"npm-check-updates": "^18.0.2"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.0",
"@types/aes-js": "^3.1.4",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^24.2.1",
"@types/semver": "^7.7.0",
"@types/source-map-support": "^0.5.10",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.33.0",
"eslint-plugin-format": "^1.0.1",
"eslint-plugin-import": "^2.32.0",
"homebridge": "^1.11.0",
"homebridge-config-ui-x": "5.4.1",
"nodemon": "^3.1.10",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.9",
"typescript": "^5.9.2",
"vitest": "^3.0.7"
}
}