-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1014 Bytes
/
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
{
"name": "llm-proxy",
"version": "1.5.4",
"description": "Manages Nginx for reverse proxy to multiple LLMs, with TLS & Bearer Auth tokens",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"build": "rm -rf dist && tsc && cp -r src/static dist/",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"node",
"nginx",
"typescript",
"reverse proxy",
"llm",
"openai",
"certificate",
"bearer auth",
"tls",
"ai"
],
"author": "Jayson Jacobs",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.7.2",
"dotenv": "^10.0.0",
"express": "^4.19.2",
"fs-extra": "^11.2.0",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.12.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}