dshmarket 1.0.3 → 1.2.0
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.md +11 -2
- package/README.zh.md +11 -2
- package/client/client.js +1235 -689
- package/client/client.js.map +1 -0
- package/lib/hot.js +117 -9
- package/lib/index.js +14 -2
- package/lib/routes.js +279 -21
- package/lib/types/hot.d.ts +17 -1
- package/lib/types/index.d.ts +0 -5
- package/lib/types/routes.d.ts +22 -0
- package/package.json +10 -4
- package/src/client/InstallToast.tsx +31 -0
- package/src/client/Market.module.css +71 -0
- package/src/client/MarketSection.tsx +793 -0
- package/src/client/globals.d.ts +13 -0
- package/src/client/index.ts +79 -0
- package/src/client/locales.ts +122 -0
- package/src/client/market-data.ts +114 -0
- package/src/client/primitives.d.ts +66 -0
- package/src/hot.ts +126 -12
- package/src/index.ts +14 -2
- package/src/routes.ts +283 -24
package/README.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="assets/logo.svg" width="96" alt="dsh-market logo">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# dsh-market
|
|
2
6
|
|
|
3
7
|
English | [中文](README.zh.md)
|
|
@@ -9,6 +13,10 @@ The plugin market inside DeepSeek Harness. Open Settings → **Plugin Market**
|
|
|
9
13
|
|
|
10
14
|

|
|
11
15
|
|
|
16
|
+
One-click themes — install, switch live, no restart:
|
|
17
|
+
|
|
18
|
+

|
|
19
|
+
|
|
12
20
|
## Install
|
|
13
21
|
|
|
14
22
|
```sh
|
|
@@ -19,9 +27,10 @@ Restart `dsh web`, then open **Settings → Plugin Market**.
|
|
|
19
27
|
|
|
20
28
|
## What you get
|
|
21
29
|
|
|
22
|
-
- **Browse & search** the full community catalog (
|
|
30
|
+
- **Browse & search** the full community catalog (300+ plugins, growing daily) — category filters, star counts, top/new sorting, bilingual descriptions that follow your UI language
|
|
31
|
+
- **Themes** — a dedicated tab for community themes and skins: install → active immediately, switch with one click (themes are mutually exclusive, your choice survives restarts), uninstall to revert
|
|
23
32
|
- **One-click install** — confirm the source, watch live progress; most plugins go live after a page refresh, no restart
|
|
24
|
-
- **Updates** — per-plugin update checks (npm version or pinned commit vs HEAD), one-click update; the market updates itself the same way
|
|
33
|
+
- **Updates** — per-plugin update checks (npm version or pinned commit vs HEAD), one-click update, or update everything at once; the market updates itself the same way
|
|
25
34
|
- **Uninstall** — two-step confirm; plugins installed this session are removed live
|
|
26
35
|
- **Zero jargon** — if a component is missing (pnpm), the market detects it and offers a one-click automatic setup
|
|
27
36
|
- **Log export** — one click produces a sanitized plain-text log for bug reports (home paths and credential shapes are masked; nothing is ever sent anywhere)
|
package/README.zh.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="assets/logo.svg" width="96" alt="dsh-market logo">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
1
5
|
# dsh-market
|
|
2
6
|
|
|
3
7
|
[English](README.md) | 中文
|
|
@@ -9,6 +13,10 @@
|
|
|
9
13
|
|
|
10
14
|

|
|
11
15
|
|
|
16
|
+
主题一键换——装完即生效,点一下切换,不用重启:
|
|
17
|
+
|
|
18
|
+

|
|
19
|
+
|
|
12
20
|
## 安装
|
|
13
21
|
|
|
14
22
|
```sh
|
|
@@ -19,9 +27,10 @@ dsh plugin --profile web add dshmarket
|
|
|
19
27
|
|
|
20
28
|
## 你会得到
|
|
21
29
|
|
|
22
|
-
- **逛与搜**——完整社区目录(
|
|
30
|
+
- **逛与搜**——完整社区目录(300+ 插件,每天在涨),分类筛选、star 数、最热/最新排序,中英描述跟随界面语言
|
|
31
|
+
- **主题**——独立主题页:装完立即生效,点一下切换(主题互斥、选择跨重启保留),卸载即恢复
|
|
23
32
|
- **一键安装**——确认来源,实时进度;多数插件刷新页面即可用,无需重启
|
|
24
|
-
- **更新**——逐插件检测(npm 版本或锁定 commit 对比 HEAD
|
|
33
|
+
- **更新**——逐插件检测(npm 版本或锁定 commit 对比 HEAD),一键更新或全部更新;市场自己也走同一通道升级
|
|
25
34
|
- **卸载**——两步确认防误触;本次会话装的插件即点即卸
|
|
26
35
|
- **零术语**——缺组件(pnpm)时市场自己发现、一键自动装好,全程不见命令行
|
|
27
36
|
- **导出日志**——一键生成脱敏纯文本日志方便反馈(home 路径与密钥形状已打码;任何数据都不会被上传)
|