forked from oznu/homebridge-gsh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.85 KB
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
{
"name": "homebridge-gsh",
"displayName": "Homebridge Google Smart Home",
"version": "0.0.16",
"description": "Google Smart Home",
"license": "GPL-3.0",
"author": "oznu <dev@oz.nu>",
"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": {
"install:portal": "npm install --prefix portal",
"install:server": "npm install --prefix server",
"watch": "concurrently \"npm run watch:server\" \"npm run watch:portal\"",
"watch:plugin": "nodemon",
"watch:server": "npm run watch --prefix server",
"watch:portal": "npm run watch --prefix portal",
"build": "npm run build:portal && npm run build:server",
"build:plugin": "tsc",
"build:server": "npm run build --prefix server",
"build:portal": "npm run build --prefix portal",
"start:server": "npm run start --prefix server",
"prepublishOnly": "npm run build:plugin"
},
"engines": {
"node": ">=8.15.1",
"homebridge": ">=0.4.22"
},
"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": "^1.0.0",
"fs-extra": "^8.1.0",
"hap-node-client": "0.0.26",
"rxjs": "^6.5.2"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/node": "^12.6.8",
"@types/ws": "^6.0.1",
"concurrently": "^4.1.1",
"nodemon": "^1.19.1",
"request-promise": "^4.2.4",
"rimraf": "^2.6.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}