@wildusk/dsh-backup 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.
Files changed (2) hide show
  1. package/README.md +5 -11
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -25,19 +25,13 @@ After a restore you may need to restart any running `dsh` processes.
25
25
 
26
26
  ## Install
27
27
 
28
- The host loads `src/index.ts` directly (no build step).
29
-
30
- 1. Download from GitHub:
31
-
32
- ```sh
33
- git clone https://github.com/usertoandy/dsh-backup.git
34
- ```
35
-
36
- 2. Register the plugin with a profile (the bundles list is updated
37
- automatically by `dsh plugin add`):
28
+ The host loads `src/index.ts` directly (no build step). Install straight
29
+ from the npm registry — `dsh plugin add` forwards the package name to pnpm
30
+ inside the profile directory, then activates the bundle automatically
31
+ (the bundles list is updated by the reconcile step):
38
32
 
39
33
  ```sh
40
- dsh plugin --profile web add ./dsh-backup
34
+ dsh plugin --profile web add @wildusk/dsh-backup
41
35
  ```
42
36
 
43
37
  Restart `dsh web` afterwards; `/backup`, `/backup-list` and `/backup-restore`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wildusk/dsh-backup",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "DeepSeek Harness plugin: /backup, /backup-list and /backup-restore commands to back up, list and restore the DSH home directory. DeepSeek Harness 备份插件:一键备份 DSH 主目录(~/.dsh)为时间戳 tar.gz 归档、查看历史备份并恢复。",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -41,6 +41,10 @@
41
41
  "restore"
42
42
  ],
43
43
  "license": "MIT",
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/usertoandy/dsh-backup.git"
47
+ },
44
48
  "peerDependencies": {
45
49
  "@deepseek-ai/cordis": "^4.0.1",
46
50
  "@deepseek-ai/dsh-commands": ">=0.1.2-alpha.4",