-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
41
{
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"@types/node": "^22.13.10",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"openai": "^4.85.4",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"name": "llm-proxy",
"version": "1.0.0",
"main": "index.js",
"dependencies": {
"axios": "^1.7.9",
"express": "^4.21.2",
"get-port": "^7.1.0",
"lodash": "^4.17.21",
"undici-types": "^6.20.0",
"yargs": "^17.7.2"
},
"scripts": {
"start": "ts-node --transpileOnly src/index.ts",
"test": "jest",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [],
"author": "Søren Louv-Jansen",
"license": "Apache-2.0",
"description": "Node.js proxy server for debugging OpenAI-compatible chat completions requests."
}