36 lines
898 B
JSON
36 lines
898 B
JSON
{
|
|
"name": "@remoteconn/gateway",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"start": "tsx src/index.ts",
|
|
"dev": "tsx watch src/index.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"lint": "eslint src --ext .ts",
|
|
"test": "vitest run",
|
|
"bench": "tsx src/bench/gatewayPerfBench.ts",
|
|
"bench:ttyd": "tsx src/bench/ttydPerfBench.ts"
|
|
},
|
|
"dependencies": {
|
|
"@remoteconn/shared": "1.0.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^5.1.0",
|
|
"helmet": "^8.1.0",
|
|
"pino": "^9.9.0",
|
|
"pino-http": "^11.0.0",
|
|
"rate-limiter-flexible": "^8.1.0",
|
|
"ssh2": "^1.17.0",
|
|
"ws": "^8.18.3",
|
|
"zod": "^4.1.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.19",
|
|
"@types/express": "^5.0.3",
|
|
"@types/ssh2": "^1.15.5",
|
|
"@types/ws": "^8.18.1",
|
|
"tsx": "^4.20.5"
|
|
}
|
|
}
|