expria-backend/package.json
Hermann_Kitio 5263372839
Some checks are pending
CI / quality (push) Waiting to run
feat(infra): route Gemini WS through SOCKS5 proxy (WARP)
- Add socks-proxy-agent dependency
- Add resolveGeminiProxyAgent() helper reading GEMINI_PROXY_URL env
- Apply agent to T1 and T2 Gemini WS factory defaults
- No proxy when GEMINI_PROXY_URL is unset (local dev unchanged)
- Tests: 311/311 green
2026-06-30 20:30:15 +03:00

31 lines
741 B
JSON

{
"name": "expria-backend",
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"@hono/node-ws": "^1.3.0",
"@supabase/supabase-js": "^2.49.4",
"dotenv": "^17.4.2",
"hono": "^4.7.7",
"socks-proxy-agent": "^10.1.0",
"stripe": "^17.7.0",
"ws": "^8.20.0"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^3.1.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.2"
}
}