-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 884 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 884 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
{
"name": "deepseek-code",
"version": "0.1.0",
"description": "A minimal Claude-Code-style CLI agent powered by DeepSeek",
"license": "MIT",
"type": "module",
"bin": {
"dsc": "./bin/dsc.js",
"deepseek-code": "./bin/dsc.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"glob": "^13.0.6",
"ink": "^5.0.1",
"ink-text-input": "^6.0.0",
"openai": "^4.76.0",
"react": "^18.3.1",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18"
}
}