-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 852 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 852 Bytes
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
{
"name": "llm-router",
"version": "1.0.0",
"description": "Round-robin proxy across 11 permanently free LLM API providers",
"main": "src/server.js",
"bin": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"build:exe": "pkg . --targets node18-win-x64 --output llm-router.exe"
},
"pkg": {
"assets": [
"src/index.html",
"src/terms.html",
"src/privacy.html",
"src/logo.png"
]
},
"keywords": [
"llm",
"ai",
"router",
"proxy",
"groq",
"openrouter",
"cerebras",
"free"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.7.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"node-machine-id": "^1.1.12"
},
"devDependencies": {
"pkg": "^5.8.1"
}
}