ghc-proxy 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +95 -4
- package/dist/main.mjs +4056 -877
- package/dist/main.mjs.map +1 -1
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ghc-proxy",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.3.0",
|
|
5
5
|
"description": "GitHub Copilot to OpenAI/Anthropic API proxy - Use Copilot with Claude Code, Cursor, and more",
|
|
6
6
|
"author": "wxxb789 <wxxb789@outlook.com>",
|
|
7
7
|
"homepage": "https://github.com/wxxb789/ghc-proxy",
|
|
@@ -33,19 +33,20 @@
|
|
|
33
33
|
"release:patch": "bumpp patch --yes --commit --tag",
|
|
34
34
|
"release:minor": "bumpp minor --yes --commit --tag",
|
|
35
35
|
"release:major": "bumpp major --yes --commit --tag",
|
|
36
|
+
"matrix:live": "bun run scripts/live-compat-matrix.ts",
|
|
37
|
+
"smoke:packaged": "bun run scripts/packaged-smoke-test.ts",
|
|
36
38
|
"start": "NODE_ENV=production bun run ./src/main.ts",
|
|
37
|
-
"typecheck": "tsc"
|
|
39
|
+
"typecheck": "npx tsc --project tsconfig.json"
|
|
38
40
|
},
|
|
39
41
|
"dependencies": {
|
|
42
|
+
"@elysiajs/cors": "^1.4.1",
|
|
40
43
|
"citty": "^0.2.1",
|
|
41
44
|
"clipboardy": "^5.3.1",
|
|
42
45
|
"consola": "^3.4.2",
|
|
46
|
+
"elysia": "^1.4.27",
|
|
43
47
|
"fetch-event-stream": "^0.1.6",
|
|
44
48
|
"gpt-tokenizer": "^3.4.0",
|
|
45
|
-
"hono": "^4.12.3",
|
|
46
49
|
"proxy-from-env": "^2.0.0",
|
|
47
|
-
"srvx": "^0.11.8",
|
|
48
|
-
"tiny-invariant": "^1.3.3",
|
|
49
50
|
"undici": "^7.22.0",
|
|
50
51
|
"zod": "^4.3.6"
|
|
51
52
|
},
|