mirror of
https://github.com/praveentcom/openproxy.git
synced 2026-02-12 22:12:46 +00:00
23 lines
771 B
JSON
23 lines
771 B
JSON
{
|
|
"name": "llm-proxy-server",
|
|
"version": "1.0.0",
|
|
"description": "A lightweight, production-ready OpenAI-compatible proxy server that seamlessly forwards LLM API requests to any endpoint with comprehensive logging, cost tracking, and PostgreSQL integration. Perfect for monitoring API usage, calculating costs, and maintaining audit trails for your AI applications.",
|
|
"main": "proxy.ts",
|
|
"scripts": {
|
|
"dev": "ts-node-dev --respawn --transpile-only proxy.ts",
|
|
"start": "node dist/proxy.js",
|
|
"build": "tsc"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^24.8.1",
|
|
"@types/pg": "^8.15.5",
|
|
"ts-node": "^10.9.2",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^17.2.3",
|
|
"pg": "^8.16.3"
|
|
}
|
|
}
|