-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.08 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
41
42
43
44
45
{
"name": "dscodex",
"version": "1.2.2",
"private": true,
"type": "module",
"description": "Use DeepSeek V4.1 Flash and GPT side by side in stock ChatGPT/Codex via a local Responses API router, including official GPT WebSocket reconnect",
"keywords": [
"deepseek",
"deepseek-flash",
"codex",
"chatgpt",
"openai",
"responses-api",
"websocket",
"reconnect",
"coding-agent",
"llm-router"
],
"homepage": "https://github.com/fish2lab/DSCodex#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/fish2lab/DSCodex.git"
},
"bugs": {
"url": "https://github.com/fish2lab/DSCodex/issues"
},
"bin": {
"dscodex": "./src/cli.mjs"
},
"scripts": {
"test": "node --test",
"smoke:picker": "node ./scripts/picker-smoke.mjs",
"smoke:state": "node ./scripts/state-smoke.mjs",
"start": "node ./src/cli.mjs start",
"serve": "node ./src/cli.mjs serve",
"doctor": "node ./src/cli.mjs doctor"
},
"engines": {
"node": ">=24.5"
},
"license": "MIT",
"dependencies": {
"ws": "^8.21.3"
}
}