-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@dsh-external/dsh-command-opt",
"version": "0.1.0",
"description": "DSH 命令优化插件:Tab/Enter 补全命令名、参数格式引导与提示弹框、tool 开启会话(subagent)补丁、空对话命令输出修复",
"private": true,
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./package.json": "./package.json"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-runtime"
]
}
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"watch": "tsdown --watch",
"smoke": "node --experimental-strip-types scripts/smoke.mjs"
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"cordis",
"command",
"tab-completion",
"slash"
],
"author": "csiroqa <justinwangyj@163.com>",
"license": "MIT",
"homepage": "https://github.com/csiroqa/dsh-command-opt",
"repository": {
"type": "git",
"url": "git+https://github.com/csiroqa/dsh-command-opt.git"
},
"bugs": {
"url": "https://github.com/csiroqa/dsh-command-opt/issues"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.7.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"dependencies": {
"@deepseek-ai/cordis": "link:../deepseek-harness/vendor/cordis",
"@deepseek-ai/dsh-client-locale": "link:../deepseek-harness/packages/client/locale",
"@deepseek-ai/dsh-client-runtime": "link:../deepseek-harness/packages/client/runtime",
"@deepseek-ai/dsh-client-ui-slots": "link:../deepseek-harness/packages/client/ui-slots"
},
"devDependencies": {
"@types/node": "^24.13.3",
"@types/react": "~18.3.1",
"react": "^18.2.0",
"tsdown": "^0.22.14",
"typescript": "^5.9.3"
},
"files": [
"lib/index.js",
"lib/client.js",
"src",
"cordis.patch.yml"
]
}