-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 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
52
53
{
"name": "homebridge-rointe-unofficial",
"version": "4.0.1",
"description": "An unofficial rointe plugin for homebridge",
"main": "dist/index.js",
"scripts": {
"debug": "rimraf dist/ && tsc && npm link",
"build": "rimraf dist/ && tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src/**.ts --max-warnings=0",
"release": "release-it"
},
"author": "Jonathan Newton <[email protected]>",
"engines": {
"homebridge": ">=1.0.0",
"node": ">=14.18.1"
},
"license": "Apache-2.0",
"files": [
"LICENSE",
"config.schema.json",
"dist"
],
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/jwcnewton/rointe-homebridge-plugin.git"
},
"bugs": {
"url": "http://github.com/jwcnewton/rointe-homebridge-plugin/issues"
},
"devDependencies": {
"@types/node": "^18.8.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"homebridge": "1.5.0",
"release-it": "^15.5.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"dependencies": {
"equation-connect": "^1.7.0",
"homebridge-framework": "1.0.6",
"rointe-sdk": "1.0.3"
},
"funding": {
"type": "paypal",
"url": "https://paypal.me/jwcnewton"
}
}