@jabrown93/homebridge-onkyo
Version:
Homebridge plugin for Onkyo Receivers
145 lines (144 loc) • 4.15 kB
JSON
{
"name": "@jabrown93/homebridge-onkyo",
"version": "1.0.9",
"description": "Homebridge plugin for Onkyo Receivers",
"keywords": [
"homebridge-plugin",
"homebridge",
"onkyo-avr",
"onkyo"
],
"homepage": "https://github.com/jabrown93/homebridge-onkyo#readme",
"bugs": {
"url": "https://github.com/jabrown93/homebridge-onkyo/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jabrown93/homebridge-onkyo.git"
},
"license": "ISC",
"author": {
"name": "Jared Brown",
"email": "npm@jaredbrown.io",
"url": "https://github.com/jabrown93"
},
"contributors": [
"gw-wiscon <gw.wiscon@gmail.com>"
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"typecheck": "tsc --noEmit",
"prettier": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint src/**.ts",
"lint:fix": "eslint src/**.ts --fix",
"clean": "rimraf ./dist",
"compile": "tsc",
"build": "rimraf ./dist && npm-run-all clean compile",
"watch": "npm run setup-config && npm run build && npm link && nodemon",
"prepublishOnly": "npm-run-all prettier lint build",
"semantic-release": "cross-env semantic-release --no-ci",
"release": "npm-run-all build semantic-release",
"test": "xo",
"prepare": "husky",
"tsc": "tsc --noEmit",
"setup-config": "if [ ! -f ./test/hbConfig/config.json ]; then cp ./test/hbConfig/config-template.json ./test/hbConfig/config.json; fi"
},
"lint-staged": {
"*.{js,mjs,ts,json,md}": [
"eslint src/**.ts --fix --max-warnings=0 --no-warn-ignored",
"prettier --write"
]
},
"xo": {
"ignores": "eiscp",
"rules": {
"unicorn/prefer-module": "warn",
"unicorn/no-new-array": "warn",
"unicorn/no-array-for-each": "warn",
"camelcase": "off",
"kebabCase": "off",
"no-mixed-spaces-and-tabs": "warn",
"no-useless-escape": "warn",
"indent": "off",
"quotes": "warn",
"capitalized-comments": "off",
"no-var": "warn",
"prefer-destructuring": "off",
"prefer-arrow-callback": "warn",
"object-shorthand": [
"off",
"always",
{
"ignoreConstructors": true
}
],
"quote-props": "error",
"no-unused-vars": "warn",
"curly": [
"error",
"multi-or-nest",
"consistent"
],
"no-use-before-define": [
"error",
{
"classes": false
}
]
},
"space": false
},
"dependencies": {
"async": "*",
"js-yaml": "*",
"polling-to-event": "^2.1.0",
"utils": "^0.2.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/async": "^3.2.24",
"@types/async-lock": "^1.4.2",
"@types/eslint__js": "^8.42.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cross-env": "^7.0.3",
"eslint": "9.19.0 ",
"eslint-plugin-ava": "^15.0.1",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-unicorn": "latest",
"homebridge": "^2.0.0-beta.27",
"homebridge-config-ui-x": "^5.0.0-beta.42",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.1",
"xo": ">=0.47.0"
},
"engines": {
"homebridge": "^1.8.0 || ^2.0.0-beta.0",
"node": "^20.18.0 || ^22.10.0"
},
"publishConfig": {
"access": "public"
}
}