-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.75 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
{
"name": "dsh-recall-plugin",
"version": "2.3.0",
"description": "DSH 消息撤回插件:在用户消息气泡旁加「撤回」按钮,把项目文件(独立影子 git 仓库快照)与对话历史(官方 fork)一并回退到该消息发送之前。",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/limbo947/dsh-recall-plugin.git"
},
"publishConfig": {
"access": "public"
},
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./client": "./lib/client.js",
"./package.json": "./package.json"
},
"files": [
"lib",
"cordis.patch.yml",
"README.md",
"README.en.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"check:dsh": "node scripts/check-dsh-version.mjs",
"build": "node scripts/build-client.mjs",
"test": "vitest run tests/unit",
"test:probe": "vitest run tests/probe",
"verify:host": "node scripts/verify-host.mjs"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"platform": "web",
"inject": [
"@deepseek-ai/dsh-client-web-react"
]
}
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-client-web-react": "^0.1.1-rc.2",
"@deepseek-ai/dsh-host-webserver": "^0.1.1-rc.2",
"@deepseek-ai/dsh-sandbox-policy": "^0.1.1-rc.2",
"@deepseek-ai/dsh-session": "^0.1.1-rc.2",
"@deepseek-ai/dsh-session-query": "^0.1.1-rc.2",
"@deepseek-ai/dsh-settings": "^0.1.1-rc.2",
"@deepseek-ai/dsh-shell": "^0.1.1-rc.2",
"@deepseek-ai/schemastery": "^3.18.1",
"react": "^18.2.0"
},
"license": "MIT",
"devDependencies": {
"esbuild": "^0.28.1",
"vitest": "^4.1.11"
}
}