-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.17 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
{
"name": "hsync",
"version": "0.30.2",
"description": "client for hsync-server",
"main": "hsync.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --inspect index.js",
"start": "node index.js",
"build": "webpack && BUILD_MODE=production webpack"
},
"repository": {
"type": "git",
"url": "git://github.com/monteslu/hsync.git"
},
"keywords": [
"iot",
"json-rpc",
"ngrok",
"websocket",
"mqtt",
"proxy",
"reverse-proxy",
"vpn",
"tunnel"
],
"browser": {
"./hsync": "./hsync-web"
},
"bin": {
"hsync": "./cli.js",
"sh-hsync": "./shell.js"
},
"author": "Luis Montes",
"license": "ISC",
"dependencies": {
"b64id": "^1.0.0",
"buffer": "^6.0.3",
"commander": "^10.0.0",
"debug": "^4.3.1",
"isomorphic-fetch": "^3.0.0",
"mqtt": "^4.2.6",
"mqtt-packet-web": "^8.2.0",
"net-web": "^0.2.0",
"precompiled-mqtt": "^4.3.14-beta",
"rawr": "^0.15.1"
},
"optionalDependencies": {
"node-datachannel": "^0.23.0"
},
"devDependencies": {
"nodemon": "^3.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^4.10.0"
}
}