-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.28 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
58
59
60
61
{
"name": "dskcode",
"version": "1.0.2",
"keywords": [
"cli",
"tui",
"commander",
"deepseek"
],
"description": "DskCode, A DeepSeek-native minimalism AI coding agent! ",
"repository": {
"type": "git",
"url": "git+https://github.com/Awu12277/dskcode"
},
"type": "module",
"bin": {
"dskcode": "dist/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"README-zh.md",
"LICENSE",
"!dist/**/*.map"
],
"scripts": {
"dev": "tsup --watch",
"debug": "npm run build && node dist/index.js",
"build": "tsup",
"type-check": "tsc --noEmit",
"format": "prettier --write src/ tests/",
"format:check": "prettier --check src/ tests/",
"test": "vitest run",
"prepublishOnly": "npm run build && npm run test"
},
"dependencies": {
"@earendil-works/pi-tui": "^0.82.1",
"chalk": "^5.6.2",
"commander": "^13.1.0",
"diff": "^9.0.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/diff": "^7.0.2",
"@types/node": "^22.14.0",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=22.0.0"
},
"license": "MIT"
}