-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "llm-proxy",
"version": "0.0.0-development",
"description": "An LLM Proxy that allows the user to interact with different language models from different providers using unified request and response formats.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"package.json"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest --config jest.config.js",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"keywords": [],
"author": "Ahmad Jawabreh - jawabreh0",
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^8.2.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.6",
"jest": "^29.7.0",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@anthropic-ai/bedrock-sdk": "^0.11.1",
"aws-sdk": "^2.1691.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"llm-proxy": "^1.4.15",
"openai": "^4.69.0"
}
}