-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
{
"name": "@hap-server/remote-access",
"version": "0.1.0",
"description": "Secure remote access to hap-server and Homebridge web interfaces.",
"keywords": [
"hap-server-plugin",
"homebridge-plugin"
],
"homepage": "https://gitlab.fancy.org.uk/hap-server/remote-access",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Samuel Elliott",
"url": "https://samuelthomas2774.github.io"
},
"repository": {
"type": "git",
"url": "https://gitlab.fancy.org.uk/hap-server/remote-access.git"
},
"main": "dist/init/index.js",
"files": [
"dist",
"!dist/cli",
"dist/cli/tunnelctl.*",
"dist/cli/tls",
"bin/tunnelctl",
"bin/*-tunnel-acme-challenge",
"server.*",
"client.*"
],
"bin": {
"hapserver-tunnel-setup": "bin/tunnelctl"
},
"dependencies": {
"http-headers": "^3.0.2",
"ip6addr": "^0.2.3",
"is-tls-client-hello": "^1.0.0",
"mkdirp": "^1.0.4",
"node-forge": "^0.9.1",
"sni": "^1.0.0",
"sqlite": "^3.0.3",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@hap-server/api": "^0.11.3",
"@types/mkdirp": "^1.0.1",
"@types/node": "^13.7.1",
"@types/node-forge": "^0.9.2",
"typescript": "^3.8.3"
},
"engines": {
"@hap-server/hap-server": "^0.11.2",
"homebridge": "^0.4.53 || ^1.0.0"
},
"publishConfig": {
"access": "public"
}
}