-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "one-api",
"version": "1.1.20",
"description": "One API to rule them all. Unified gateway for 20+ LLM providers. OpenAI-compatible, single binary, zero config.",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js --server",
"dev": "nodemon src/index.js --server",
"test": "node tests/test.js && node tests/api.test.js && node tests/api_robustness.test.js && node tests/heavy_computation.test.js && node tests/cors.test.js",
"benchmark": "node benchmarks/run.js",
"docker:build": "docker build -t shenald/one-api .",
"docker:run": "docker run -p 3000:3000 shenald/one-api"
},
"keywords": [
"llm",
"api-gateway",
"openai",
"anthropic",
"gemini",
"unified-api",
"vibe-coder"
],
"author": "shenald.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shenald-dev/one-api.git"
},
"dependencies": {
"compression": "^1.8.1",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"helmet": "^8.1.0"
},
"devDependencies": {
"nodemon": "^3.1.14",
"supertest": "^7.2.2"
}
}