mirror of
https://github.com/tiennm99/claude-central-gateway.git
synced 2026-04-17 15:20:33 +00:00
Bumps [undici](https://github.com/nodejs/undici) to 7.24.4 and updates ancestor dependency [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler). These dependencies need to be updated together. Updates `undici` from 5.29.0 to 7.24.4 - [Release notes](https://github.com/nodejs/undici/releases) - [Commits](https://github.com/nodejs/undici/compare/v5.29.0...v7.24.4) Updates `wrangler` from 3.114.17 to 4.80.0 - [Release notes](https://github.com/cloudflare/workers-sdk/releases) - [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.80.0/packages/wrangler) --- updated-dependencies: - dependency-name: undici dependency-version: 7.24.4 dependency-type: indirect - dependency-name: wrangler dependency-version: 4.80.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
543 B
JSON
25 lines
543 B
JSON
{
|
|
"name": "claude-central-gateway",
|
|
"version": "1.0.0",
|
|
"description": "A lightweight proxy for Claude Code that routes requests to third-party API providers",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "hono dev",
|
|
"start": "hono start",
|
|
"deploy:vercel": "vercel --prod",
|
|
"deploy:cf": "wrangler deploy",
|
|
"dev:cf": "wrangler dev"
|
|
},
|
|
"dependencies": {
|
|
"hono": "^4.6.0",
|
|
"openai": "^4.85.0"
|
|
},
|
|
"devDependencies": {
|
|
"wrangler": "^4.80.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|