-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.02 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
{
"name": "dsh-gitbash-shell",
"version": "0.23.0",
"description": "Windows 上让 agent 的每条 shell 命令改经 Git for Windows bash 执行;物化四个内置预设的 Git Bash 变体,统一 MSYS 盘根路径方言,侧栏终端接管可开关。· Run every agent shell command through Git for Windows bash on Windows; materialize Git Bash variants of the built-in presets, unify the MSYS drive-root path dialect, and adopt the sidebar terminal behind a switch.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/KannaKuron/dsh-gitbash-shell.git"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./shell": "./src/shell.js",
"./client": "./src/client.js"
},
"engines": {
"node": ">=18",
"dsh": ">=0.1.0"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-ui-slots",
"@deepseek-ai/dsh-client-ui-settings"
],
"platform": "web"
}
},
"files": [
"src",
"assets",
"cordis.patch.yml",
"dsh.plugin.json",
"README.md",
"README_EN.md",
"LICENSE"
],
"scripts": {
"test": "node --test tests/smoke.mjs",
"version": "node -e \"const fs=require('fs');const m=JSON.parse(fs.readFileSync('dsh.plugin.json','utf8'));const v=JSON.parse(fs.readFileSync('package.json','utf8')).version;m.version=v;fs.writeFileSync('dsh.plugin.json',JSON.stringify(m,null,2)+'\\n')\" && git add dsh.plugin.json"
},
"keywords": [
"dsh",
"deepseek-harness",
"git-bash",
"windows",
"shell",
"dsh-plugin"
],
"license": "MIT",
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/schemastery": "^3.18.1"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/KannaKuron/dsh-gitbash-shell",
"bugs": {
"url": "https://github.com/KannaKuron/dsh-gitbash-shell/issues"
}
}