-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.25 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@wangcan26/dscode",
"version": "0.0.7",
"type": "module",
"description": "DeepSeek-native terminal AI agent for digital work — DeepSeek model harness analogous to Claude Code for Claude models.",
"bin": {
"dscode": "dist/dscode.mjs"
},
"main": "dist/dscode.mjs",
"files": [
"dist/",
"docs/assets/",
"docs/screen_shots/",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"start": "tsx src/core/main.ts",
"build": "node scripts/build.mjs",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "https://github.com/wangcan26/dscode"
},
"keywords": [
"deepseek",
"ai",
"coding-agent",
"cli",
"terminal",
"llm",
"code-assistant"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@earendil-works/pi-tui": "^0.74.0",
"@mariozechner/pi-agent-core": "^0.70.2",
"@mariozechner/pi-ai": "^0.70.2",
"chalk": "^5.5.0",
"tesseract.js": "^7.0.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"esbuild": "^0.28.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^4.1.5"
}
}