-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 884 Bytes
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
{
"name": "relaygate",
"version": "1.0.0",
"description": "Authenticated outbound HTTPS proxy server built with Hono and TypeScript",
"type": "module",
"main": "dist/server.js",
"scripts": {
"dev": "concurrently \"tsc -w\" \"node --watch --env-file=.env dist/server.js\"",
"build": "tsc",
"start": "node --env-file=.env dist/server.js",
"typecheck": "tsc --noEmit"
},
"keywords": [
"proxy",
"hono",
"typescript",
"outbound-proxy",
"ssrf"
],
"author": "Sunjay Kumar",
"license": "MIT",
"repository": "https://github.com/sunjay-dev/relaygate",
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@hono/node-server": "^1.14.4",
"hono": "^4.8.6",
"pino": "^10.3.1",
"valibot": "^1.4.2"
},
"devDependencies": {
"concurrently": "^9.2.0",
"@types/node": "^26.2.0",
"typescript": "^7.0.2"
}
}