forked from toxuin/mdns-tunneller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "mdns-tunneller",
"version": "1.0.0",
"description": "Tunnels two (or more) mDNS domains together through websockets",
"repository": "https://github.com/toxuin/mdns-tunneller",
"main": ".build/index.js",
"scripts": {
"start": "DEBUG=mdns* node -r source-map-support/register --inspect=0.0.0.0:9229 .build/index.js",
"start:prod": "node .build/index.js",
"build": "rm -rf .build && tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mdns",
"tunnel",
"multicast",
"bonjour"
],
"author": "toxuin",
"license": "CC-BY-NC-SA-4.0",
"dependencies": {
"@homebridge/ciao": "1.1.2",
"buffer-json": "^2.0.0",
"config": "^3.3.1",
"debug": "^4.1.1",
"js-yaml": "^3.14.0",
"lodash": "^4.17.15",
"primus": "^7.3.4",
"ws": "^7.3.0"
},
"devDependencies": {
"@types/buffer-json": "^2.0.0",
"@types/config": "0.0.38",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.168",
"@types/primus": "^7.3.4",
"source-map-support": "^0.5.19",
"typescript": "^4.1.5"
}
}