-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1008 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1008 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
{
"name": "free-deepseek-api",
"version": "0.1.0",
"description": "OpenAI-compatible local API proxy for DeepSeek Web chat",
"main": "server.js",
"bin": {
"free-deepseek-api": "./server.js",
"free-deepseek-client": "./client.js"
},
"scripts": {
"start": "node server.js",
"auth": "node scripts/auth.js",
"deepseek:auth": "node scripts/deepseek_chrome_auth.js",
"client": "node client.js",
"test": "node --check server.js && node --check scripts/auth.js && node --check scripts/deepseek_chrome_auth.js && node --check scripts/probe_deepseek_models.js && node --check client.js && node --check scripts/live_agentic_smoke_tests.mjs",
"test:live": "node scripts/live_agentic_smoke_tests.mjs"
},
"keywords": [
"deepseek",
"proxy",
"openai-compatible",
"llm",
"web-api"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ForgetMeAI/FreeDeepseekAPI.git"
}
}