dsh-blackjack 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -94,6 +94,17 @@ dsh --profile web
94
94
  出一个残缺的状态。这不是本插件独有的坑,其它社区 dsh 插件的安装文档也踩过同一
95
95
  处并确认了同样的结论。
96
96
 
97
+ ### 版本要求:本插件锁定 dsh `0.1.0-rc.6`
98
+
99
+ 插件把 `@deepseek-ai/dsh-*` 的 peer 全部**精确锁**在 `0.1.0-rc.6`,不是写成
100
+ `^0.1.0-rc.6`。这不是保守,是必须的:这套包锁步发布,rc 之间并不互相兼容,而
101
+ `^` 会让包管理器给宿主没有的那个 peer 装上更新的 rc——0.1.0 就是这么崩的
102
+ (`dsh-llm-deepseek@rc.8` 配宿主的 `dsh-llm@rc.6`,启动即报
103
+ `does not provide an export named 'offloadRequestImages'`)。
104
+
105
+ 所以:**请用 `dsh@0.1.0-rc.6`**。跑在别的 rc 上会看到 peer 版本警告,届时等插件
106
+ 跟进发新版即可。
107
+
97
108
  安装成功后,dsh 会读取插件 `package.json` 里的 `dsh.bundle.patch` 声明并自动把
98
109
  `blackjack.cordis.yml` 接进 profile 的 bundle 层——不需要你手工再写一份
99
110
  `--patch` 覆盖层。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-blackjack",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "社区福利小游戏插件:在 dsh 里玩 21 点赢取可消费的模型额度",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -49,13 +49,13 @@
49
49
  },
50
50
  "peerDependencies": {
51
51
  "@deepseek-ai/cordis": "^4.0.1",
52
- "@deepseek-ai/dsh-agent": "^0.1.0-rc.6",
53
- "@deepseek-ai/dsh-anonymous-user-id": "^0.1.0-rc.6",
54
- "@deepseek-ai/dsh-commands": "^0.1.0-rc.6",
55
- "@deepseek-ai/dsh-credentials": "^0.1.0-rc.6",
56
- "@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
57
- "@deepseek-ai/dsh-llm-deepseek": "^0.1.0-rc.6",
58
- "@deepseek-ai/dsh-session": "^0.1.0-rc.6"
52
+ "@deepseek-ai/dsh-agent": "0.1.0-rc.6",
53
+ "@deepseek-ai/dsh-anonymous-user-id": "0.1.0-rc.6",
54
+ "@deepseek-ai/dsh-commands": "0.1.0-rc.6",
55
+ "@deepseek-ai/dsh-credentials": "0.1.0-rc.6",
56
+ "@deepseek-ai/dsh-llm": "0.1.0-rc.6",
57
+ "@deepseek-ai/dsh-llm-deepseek": "0.1.0-rc.6",
58
+ "@deepseek-ai/dsh-session": "0.1.0-rc.6"
59
59
  },
60
60
  "dependencies": {
61
61
  "@deepseek-ai/schemastery": "^3.18.1"