@kaijia/dsh-sidebar 0.1.0 → 0.1.2

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 CHANGED
@@ -65,7 +65,7 @@ dsh plugin --profile web add @kaijia/dsh-sidebar
65
65
  ```bash
66
66
  pnpm build
67
67
  pnpm pack
68
- dsh plugin --profile web add ./kaijia-dsh-sidebar-0.1.0.tgz
68
+ dsh plugin --profile web add ./kaijia-dsh-sidebar-0.1.2.tgz
69
69
  ```
70
70
 
71
71
  两种方式安装后,都可以用以下命令确认配置层已生效:
package/lib/client.js CHANGED
@@ -1,5 +1,5 @@
1
1
  window.__ModuleLoader__.load({
2
- id: "dsh-sidebar",
2
+ id: "@kaijia/dsh-sidebar",
3
3
  factory: (require) => {
4
4
  var module = { exports: {} };
5
5
  var exports = module.exports;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaijia/dsh-sidebar",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "VSCode-style file explorer for the DeepSeek Harness web client: a body-mounted, draggable right sidebar with virtualized lazy file tree and text / Markdown / image preview. Does not depend on the native details slot, so it works on blank sessions.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",