generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.59 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
{
"private": false,
"displayName": "Homebridge - Solax Solar Inverter Plugin",
"name": "homebridge-solax",
"version": "1.3.4",
"description": "A Solax connector that (crudely) exposes readonly metrics as Light Sensors for power generation, import, export, individual string generation, and (experimental) battery metrics. Due to the constraints around HomeKit's support for power inverters, this seemed the best fit. Also has configurable alerts, giving the ability to automate actions as a result of excess power generation, or limited power generation.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/troygNZ/homebridge-solax.git"
},
"bugs": {
"url": "https://github.com/troygNZ/homebridge-solax/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">0.4.53"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**.ts",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin"
],
"dependencies": {
"@types/lodash": "^4.14.151",
"@types/node-fetch": "^2.5.7",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/node": "^13.13.6",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"homebridge": "^1.1.0",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.2",
"dns-packet": ">=5.2.2"
}
}