-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.03 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "hsync",
"version": "0.33.0",
"type": "module",
"description": "client for hsync-server",
"main": "./hsync.js",
"exports": {
".": {
"browser": {
"import": "./hsync-web.js"
},
"node": {
"import": "./hsync.js"
},
"default": "./hsync.js"
},
"./web": {
"import": "./hsync-web.js"
},
"./node": {
"import": "./hsync.js"
},
"./config": {
"import": "./config.js"
},
"./connection": {
"import": "./connection.js"
}
},
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"dev": "nodemon --inspect index.js",
"start": "node index.js",
"build": "webpack && BUILD_MODE=production webpack",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.js\"",
"prepare": "husky"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git://github.com/monteslu/hsync.git"
},
"keywords": [
"iot",
"json-rpc",
"ngrok",
"websocket",
"mqtt",
"proxy",
"reverse-proxy",
"vpn",
"tunnel"
],
"browser": {
"./hsync.js": "./hsync-web.js"
},
"bin": {
"hsync": "./cli.js",
"sh-hsync": "./shell.js"
},
"author": "Luis Montes",
"license": "ISC",
"dependencies": {
"b64id": "^1.1.1",
"buffer": "^6.0.3",
"commander": "^14.0.2",
"debug": "^4.4.3",
"mqtt": "^5.14.1",
"mqtt-packet": "^9.0.2",
"net-web": "^0.3.0",
"rawr": "^0.19.0"
},
"optionalDependencies": {
"node-datachannel": "^0.32.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"nodemon": "^3.1.11",
"prettier": "^3.8.0",
"vitest": "^4.0.17",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1"
}
}