forked from TerrenceMiao/AnthropicProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.76 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.76 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "anthropic-proxy-nextgen",
"version": "1.0.4",
"description": "A proxy service that allows Anthropic/Claude API requests to be routed through an OpenAI compatible API",
"main": "dist/index.js",
"type": "module",
"bin": {
"anthropic-proxy-nextgen": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/cli.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"anthropic",
"claude",
"openai",
"proxy",
"api",
"llm"
],
"author": "Terrence Miao",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TerrenceMiao/AnthropicProxy.git"
},
"homepage": "https://github.com/TerrenceMiao/AnthropicProxy#README",
"bugs": {
"url": "https://github.com/TerrenceMiao/AnthropicProxy/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"openai": "^4.68.2",
"tiktoken": "^1.0.15",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.29.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.34.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
]
}