dsh-bash-terminal-ts 0.2.5 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +2 -0
- package/README.ja.md +2 -0
- package/README.ko.md +2 -0
- package/README.md +2 -0
- package/package.json +16 -3
package/README.en.md
CHANGED
|
@@ -182,6 +182,8 @@ CI runs the same suite on `windows-latest` (`.github/workflows/test.yml`).
|
|
|
182
182
|
|
|
183
183
|
## Technical implementation
|
|
184
184
|
|
|
185
|
+
Requirements: **Node.js 22+ (24 recommended)**, DSH 0.1.2+.
|
|
186
|
+
|
|
185
187
|
The source is TypeScript (`strict` + `noUncheckedIndexedAccess`), and the compiled artifacts `lib/` and `dist/` are committed alongside the repository, so DSH loads `lib/index.js` directly and the plugin **works without a build step**.
|
|
186
188
|
|
|
187
189
|
All require-side dependencies (13 packages, `@deepseek-ai/*` and friends) are declared as `peerDependencies` + `peerDependenciesMeta.optional`, avoiding a duplicate install alongside the host's own copies.
|
package/README.ja.md
CHANGED
|
@@ -181,6 +181,8 @@ CI は `windows-latest` 上で同じ一式を実行します(`.github/workflow
|
|
|
181
181
|
|
|
182
182
|
## 技術実装
|
|
183
183
|
|
|
184
|
+
動作要件:**Node.js 22+(24 を推奨)**、DSH 0.1.2+。
|
|
185
|
+
|
|
184
186
|
ソースは TypeScript(`strict` + `noUncheckedIndexedAccess`)で、コンパイル成果物 `lib/`、`dist/` はリポジトリにコミットされています。DSH は `lib/index.js` をそのまま読み込むため、**インストール不要で使用できます**。
|
|
185
187
|
|
|
186
188
|
require 側の依存(`@deepseek-ai/*` など 13 パッケージ)はすべて `peerDependencies` + `peerDependenciesMeta.optional` として宣言し、ホストが同梱するコピーとの重複インストールを避けています。
|
package/README.ko.md
CHANGED
|
@@ -179,6 +179,8 @@ CI는 `windows-latest`에서 동일한 세트를 실행합니다(`.github/workfl
|
|
|
179
179
|
|
|
180
180
|
## 기술 구현
|
|
181
181
|
|
|
182
|
+
실행 요구사항: **Node.js 22+ (24 권장)**, DSH 0.1.2+.
|
|
183
|
+
|
|
182
184
|
소스는 TypeScript(`strict` + `noUncheckedIndexedAccess`)이며, 컴파일 산출물 `lib/`, `dist/`는 저장소에 함께 커밋되어 DSH가 `lib/index.js`로 바로 로드하므로 **설치 없이 사용할 수 있습니다**.
|
|
183
185
|
|
|
184
186
|
require 측 의존성(`@deepseek-ai/*` 등 13개 패키지)은 모두 `peerDependencies` + `peerDependenciesMeta.optional`로 선언하여 호스트에 내장된 사본과 중복 설치되는 것을 피했습니다.
|
package/README.md
CHANGED
|
@@ -179,6 +179,8 @@ CI 在 `windows-latest` 上跑同一套(`.github/workflows/test.yml`)。
|
|
|
179
179
|
|
|
180
180
|
## 技术实现
|
|
181
181
|
|
|
182
|
+
运行要求:**Node.js 22+(推荐 24)**,DSH 0.1.2+。
|
|
183
|
+
|
|
182
184
|
源码为 TypeScript(`strict` + `noUncheckedIndexedAccess`),编译产物 `lib/`、`dist/` 随仓库提交,DSH 直接按 `lib/index.js` 加载,**无需安装即可使用**。
|
|
183
185
|
|
|
184
186
|
require 侧依赖(`@deepseek-ai/*` 等 13 个包)全部声明为 `peerDependencies` + `peerDependenciesMeta.optional`,避免与宿主自带的副本重复安装。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-bash-terminal-ts",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "DSH plugin: one shell tool that runs commands through PowerShell, Git Bash, MSYS2, or WSL on Windows, with a user-chosen default terminal in the Web UI settings. TypeScript rewrite of MAXeaglet/dsh-bash-terminal with working MSYS2/MINGW64 support.",
|
|
5
5
|
"author": "drscrewdriver",
|
|
6
6
|
"contributors": [
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"typescript"
|
|
31
31
|
],
|
|
32
32
|
"engines": {
|
|
33
|
-
"node": ">=
|
|
33
|
+
"node": ">=22",
|
|
34
34
|
"dsh": ">=0.1.2-rc.1 <0.2.0-0"
|
|
35
35
|
},
|
|
36
36
|
"publishConfig": {
|
|
@@ -113,10 +113,23 @@
|
|
|
113
113
|
"@deepseek-ai/schemastery": "^3.18.1"
|
|
114
114
|
},
|
|
115
115
|
"devDependencies": {
|
|
116
|
-
"@
|
|
116
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
117
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.2-rc.1",
|
|
118
|
+
"@deepseek-ai/dsh-client-store": "^0.1.2-rc.1",
|
|
119
|
+
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-rc.1",
|
|
120
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.2-rc.1",
|
|
121
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.2-rc.1",
|
|
122
|
+
"@deepseek-ai/dsh-llm": "^0.1.2-rc.1",
|
|
123
|
+
"@deepseek-ai/dsh-sandbox": "^0.1.2-rc.1",
|
|
124
|
+
"@deepseek-ai/dsh-settings": "^0.1.2-rc.1",
|
|
125
|
+
"@deepseek-ai/dsh-shell": "^0.1.2-rc.1",
|
|
126
|
+
"@deepseek-ai/dsh-timeout": "^0.1.2-rc.1",
|
|
127
|
+
"@deepseek-ai/dsh-tools": "^0.1.2-rc.1",
|
|
128
|
+
"@types/node": "^24.13.4",
|
|
117
129
|
"@types/react": "^18.2.0",
|
|
118
130
|
"@types/react-dom": "^18.2.0",
|
|
119
131
|
"esbuild": "^0.28.2",
|
|
132
|
+
"react": "^18.2.0",
|
|
120
133
|
"typescript": "^5.9.0"
|
|
121
134
|
}
|
|
122
135
|
}
|