Files
openproxy/package.json
dependabot[bot] 6d8fc69cf5 chore(deps-dev): bump @types/node from 24.8.1 to 25.0.3
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 24.8.1 to 25.0.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 25.0.3
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-16 23:57:00 +00:00

46 lines
1.2 KiB
JSON

{
"name": "openproxy",
"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"
},
"keywords": [
"llm",
"proxy",
"openai",
"api",
"logging",
"cost-tracking",
"postgresql",
"monitoring",
"audit"
],
"author": "LLM Proxy Server Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/praveentcom/openproxy.git"
},
"bugs": {
"url": "https://github.com/praveentcom/openproxy/issues"
},
"homepage": "https://github.com/praveentcom/openproxy#readme",
"devDependencies": {
"@types/node": "^25.0.3",
"@types/pg": "^8.15.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@types/uuid": "^10.0.0",
"dotenv": "^17.2.3",
"pg": "^8.16.3",
"uuid": "^13.0.0"
}
}