27 lines
660 B
JSON
27 lines
660 B
JSON
{
|
|
"name": "@iconsulting/llm-gateway",
|
|
"version": "1.0.0",
|
|
"description": "LLM API Gateway - Anthropic/OpenAI compatible proxy with regulatory injection and content filtering",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsx watch src/main.ts",
|
|
"start": "node dist/main.js",
|
|
"lint": "eslint \"src/**/*.ts\"",
|
|
"test": "jest",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"dependencies": {
|
|
"fastify": "^5.2.0",
|
|
"pg": "^8.11.0",
|
|
"uuid": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"@types/pg": "^8.10.0",
|
|
"@types/uuid": "^9.0.0",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.0"
|
|
}
|
|
}
|