This repository has been archived by the owner on Oct 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
77 lines (77 loc) · 1.84 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"private": false,
"name": "homebridge-gsh",
"displayName": "Homebridge Google Smart Home",
"version": "2.2.3",
"description": "Google Smart Home",
"license": "GPL-3.0",
"author": "oznu <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/oznu/homebridge-gsh.git"
},
"bugs": {
"url": "https://github.com/oznu/homebridge-gsh/issues"
},
"main": "dist/index.js",
"scripts": {
"watch": "nodemon",
"watch:ui": "npm run start --prefix homebridge-ui/public",
"build": "rimraf dist && npm run build:plugin && npm run build:ui",
"build:plugin": "tsc",
"build:ui": "npm run build --prefix homebridge-ui/public",
"lint": "eslint --ext .ts --max-warnings=0 .",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=1.0.0"
},
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/oznu"
}
],
"keywords": [
"homebridge-plugin",
"google smart home",
"google-smart-home",
"google home",
"google-home",
"google assistant",
"google-assistant",
"google",
"android",
"homebridge",
"gsh"
],
"bundledDependencies": [
"@oznu/ws-connect",
"fs-extra",
"hap-node-client",
"rxjs"
],
"dependencies": {
"@oznu/ws-connect": "^2.2.0",
"fs-extra": "^9.0.1",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.2",
"@types/node": "^14.11.8",
"@types/ws": "^7.2.7",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"actions-on-google": "^2.13.0",
"eslint": "^7.11.0",
"hap-node-client": "^0.1.5",
"hap-nodejs": "^0.8.2",
"homebridge": "^1.3.3",
"nodemon": "^2.0.5",
"request-promise": "^4.2.6",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}