-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.39 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
{
"private": false,
"displayName": "Homebridge Teslafi",
"name": "homebridge-teslafi",
"version": "1.2.0",
"description": "View and control your Tesla with Homekit using Homebridge and Teslafi API.",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:loftux/homebridge-teslafi.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/loftux/homebridge-teslafi/issues"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"main": "dist/index.js",
"scripts": {
"lint": "eslint ./src --ext .ts --max-warnings=150",
"watch": "npm run build && cp src/dashboard/template.html dist/dashboard/ && npm link && nodemon",
"build": "rimraf ./dist && tsc && cp src/dashboard/template.html dist/dashboard/",
"prepublishOnly": "npm run build",
"test": "echo \"Tests not implemented\""
},
"keywords": [
"homebridge-plugin",
"tesla",
"teslafi",
"homekit"
],
"dependencies": {
"node-fetch": "^2.6.7",
"node-html-to-image": "^3.2.4"
},
"devDependencies": {
"@types/node": "^14.18.34",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"homebridge": "^1.6.0",
"nodemon": "^2.0.20",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.9.4"
}
}