-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.81 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
{
"name": "dsh-gitbash-shell",
"version": "0.6.0",
"description": "DSH plugin: run every agent shell command through Git for Windows bash on Windows instead of PowerShell. Replaces the pwsh executor with a Git Bash ctx.shell provider and materializes Git Bash variants of the standard/minimal/code/cordis agent presets into your user preset root at startup. On Windows it also adopts dsh-better-sidebar's terminal shell (UI tabs and the model-facing terminal_* tools) through the sidebar's official settings seam, and pairs with dsh-ptc-cordis-preset so the PTC Creation-mode preset materializes as its Git Bash variant. Ships both composition eras for dsh <= 0.1.1 (built-in preset id 'code') and dsh >= 0.1.2 (renamed id 'ptc') — the era is probed per boot and re-materialized automatically after a dsh upgrade, in either upgrade order; preset ids never change so pinned sessions stay valid.",
"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"
},
"engines": {
"node": ">=18"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
}
},
"files": [
"src",
"assets",
"cordis.patch.yml",
"dsh.plugin.json",
"README.md",
"README_EN.md",
"LICENSE"
],
"scripts": {
"test": "node --test tests/smoke.mjs"
},
"keywords": [
"dsh",
"deepseek-harness",
"git-bash",
"windows",
"shell",
"dsh-plugin"
],
"license": "MIT",
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/KannaKuron/dsh-gitbash-shell",
"bugs": {
"url": "https://github.com/KannaKuron/dsh-gitbash-shell/issues"
}
}