-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.69 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"license": "UNLICENSED",
"displayName": "Yamaha AVR",
"name": "homebridge-yamaha-avr",
"version": "3.0.1",
"description": "homebridge-plugin - Add a Yamaha AVR as a HomeKit Audio Receiver with Power, Input, Volume & Remote Control",
"author": {
"name": "ACDR",
"email": "[email protected]",
"url": "https://github.com/ACDR"
},
"repository": {
"type": "git",
"url": "git://github.com/ACDR/homebridge-yamaha-avr.git"
},
"bugs": {
"url": "https://github.com/ACDR/homebridge-yamaha-avr/issues"
},
"engines": {
"node": ">=14.15.4",
"homebridge": ">=1.3.5"
},
"dependencies": {
"fs-extra": "^10.1.0",
"node-fetch": "^3.2.10"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.7.13",
"@types/node-persist": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^7.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"homebridge": "^1.3.9",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"scripts": {
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build",
"publish:stable": "npm publish --tag stable",
"publish:beta": "npm publish --tag beta",
"lint": "eslint src/**.ts --max-warnings=0",
"lint:fix": "eslint src/**.ts --max-warnings=0 --fix"
},
"keywords": [
"homebridge-plugin",
"YamahaAVR",
"Yamaha",
"AVR",
"Receiver"
]
}