-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@dsh-external/dsh-backup-sync",
"version": "0.2.0",
"description": "DSH 备份/恢复与跨机同步插件:本地快照、WebDAV 增量推送/拉取、自动备份与失效归档清理",
"private": true,
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"files": [
"lib/index.js",
"lib/client.js",
"src",
"cordis.patch.yml"
],
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-runtime"
]
}
},
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"watch": "tsdown --watch",
"smoke": "node --experimental-strip-types scripts/smoke.mts"
},
"keywords": [
"dsh",
"dsh-plugin",
"deepseek-harness",
"cordis",
"backup",
"webdav",
"sync"
],
"author": "csiroqa <justinwangyj@163.com>",
"license": "MIT",
"homepage": "https://github.com/csiroqa/dsh-backup-sync",
"repository": {
"type": "git",
"url": "git+https://github.com/csiroqa/dsh-backup-sync.git"
},
"bugs": {
"url": "https://github.com/csiroqa/dsh-backup-sync/issues"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.7.0",
"devDependencies": {
"@types/node": "^24.13.3",
"tsdown": "^0.22.14",
"typescript": "^5.9.0"
},
"dependencies": {
"@deepseek-ai/cordis": "link:../../../deepseek-harness/vendor/cordis",
"@deepseek-ai/cordis-plugin-timer": "link:../../../deepseek-harness/vendor/timer",
"@deepseek-ai/dsh-client-runtime": "link:../../../deepseek-harness/packages/client/runtime",
"@deepseek-ai/dsh-commands": "link:../../../deepseek-harness/packages/interaction/commands",
"@deepseek-ai/dsh-credentials": "link:../../../deepseek-harness/packages/credentials/credentials",
"@deepseek-ai/dsh-home-paths": "link:../../../deepseek-harness/packages/util/home-paths",
"@deepseek-ai/dsh-session": "link:../../../deepseek-harness/packages/core/session",
"@deepseek-ai/dsh-session-persistence": "link:../../../deepseek-harness/packages/session/session-persistence",
"@deepseek-ai/dsh-workspace": "link:../../../deepseek-harness/packages/workspace/workspace"
}
}