generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"private": true,
"displayName": "ipx800",
"name": "homebridge-ipx800",
"version": "1.0.0",
"description": "This plugin goal is to support ipx800 from GCE Electronics",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Adrien-B/ipx800/issues"
},
"bugs": {
"url": "https://github.com/Adrien-B/ipx800/issues"
},
"engines": {
"node": ">=18.20.4",
"homebridge": ">=1.8.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts --max-warnings=0",
"watch": "npm run build && npm link && nodemon",
"full-build": "ts-node src/configParser.ts && rimraf ./dist && tsc",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin"
],
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.8.6",
"eslint": "^9.14.0",
"homebridge": "^2.0.0-beta.0",
"nodemon": "^3.1.7",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2",
"json-schema-to-typescript": "^15.0.4"
},
"dependencies": {
"axios": "^0.24.0",
"nodemon": "^2.0.13"
}
}