- Implemented OpenAI compatible API proxy server - Support for Anthropic and custom OpenAI format conversion - Automatic API key refresh with WorkOS OAuth - SSE streaming response transformation - Smart header management for Factory endpoints - Chinese documentation
19 lines
374 B
JSON
19 lines
374 B
JSON
{
|
|
"name": "droid2api",
|
|
"version": "1.0.0",
|
|
"description": "OpenAI Compatible API Proxy",
|
|
"main": "server.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "node server.js"
|
|
},
|
|
"keywords": ["openai", "api", "proxy"],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"node-fetch": "^3.3.2"
|
|
}
|
|
}
|