-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "homebridge-tesla",
"version": "4.3.5",
"description": "Tesla support for Homebridge: https://github.com/nfarina/homebridge",
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/nfarina/homebridge-tesla.git"
},
"bugs": {
"url": "http://github.com/nfarina/homebridge-tesla/issues"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"main": "dist/index.js",
"files": [
"dist",
"config.schema.json"
],
"scripts": {
"dev": "rollup -c -w --bundleConfigAsCjs",
"build": "rollup -c --bundleConfigAsCjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"promptly": "^3.2.0",
"teslajs": "^4.10.0"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/promptly": "^3.0.2",
"homebridge": "^1.5.1",
"prettier": "^2.7.1",
"rollup": "^3.2.3",
"typescript": "^4.8.4"
}
}