generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "homebridge-electricitymaps",
"displayName": "Homebridge Electricity Maps",
"type": "module",
"version": "2.0.2",
"description": "A Homebridge plugin to display local grid electricity data using Electricity Maps API",
"author": "Kévin Darcel",
"license": "Apache-2.0",
"homepage": "https://github.com/tuxity/homebridge-electricitymaps#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tuxity/homebridge-electricitymaps.git"
},
"bugs": {
"url": "https://github.com/tuxity/homebridge-electricitymaps/issues"
},
"keywords": [
"homebridge-plugin",
"electricitymaps"
],
"main": "dist/index.js",
"engines": {
"node": "^18.20.4 || ^20.18.0 || ^22.10.0",
"homebridge": "^1.8.0 || ^2.0.0-beta.0"
},
"scripts": {
"build": "rimraf ./dist && tsc",
"lint": "eslint . --max-warnings=0",
"prepublishOnly": "npm run lint && npm run build",
"watch": "npm run build && npm link && nodemon"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.9",
"eslint": "^9.13.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.11.0"
},
"dependencies": {
"axios": "^1.7.7"
}
}