-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.06 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
{
"name": "hypergate",
"version": "0.0.0-snapshot",
"description": "TCP and UDP gateway and reverse proxy built on top of hyperswarm",
"main": "src/cli.ts",
"dependencies": {
"@hyperswarm/dht": "^6.4.0",
"@types/minimist": "^1.2.5",
"express": "^4.21.2",
"hyperswarm": "^4.3.6",
"minimist": "^1.2.5",
"node-docker-api": "^1.1.22"
},
"bin": {
"hypergate": "./build/dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/riccardobl/hypergate.git"
},
"author": "Riccardo Balbo",
"license": "MIT",
"bugs": {
"url": "https://github.com/riccardobl/hypergate/issues"
},
"homepage": "https://github.com/riccardobl/hypergate",
"type": "module",
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"devDependencies": {
"@types/node": "^22.8.6",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"scripts": {
"build": "tsc",
"start": "node ./build/dist/cli.js",
"debug": "HYPERGATE_VERBOSE=true tsx src/cli"
}
}