generated from homebridge/homebridge-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.21 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
{
"private": "true",
"displayName": "Development Branch",
"name": "homebridge-teslemetry",
"description": "Connect Homebridge to your Teslemetry account.",
"homepage": "https://github.com/Teslemetry/homebridge/tree/dev?tab=readme-ov-file",
"repository": "github:teslemetry/homebridge#dev",
"bugs": {
"url": "https://github.com/teslemetry/homebridge/issues/new/choose"
},
"type": "module",
"license": "Apache-2.0",
"version": "0.4.4",
"engines": {
"node": "^18.17.0 || ^20.9.0",
"homebridge": "^1.8.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint src/**/*.ts --max-warnings=0",
"fix": "eslint src/**/*.ts --fix",
"watch": "npm run build && npm link && nodemon",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run lint && npm run build"
},
"keywords": [
"homebridge-plugin"
],
"devDependencies": {
"@types/node": "^20.12.13",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"eslint": "^8.57.0",
"homebridge": "^1.8.2",
"nodemon": "^3.1.2",
"rimraf": "^5.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"tesla-fleet-api": "^0.2.0"
}
}