@doubleelec/dsh-workspace-explorer 0.7.1-fork.4
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/LICENSE +22 -0
- package/README.md +175 -0
- package/README.zh.md +175 -0
- package/assets/screenshots/edit.png +0 -0
- package/assets/screenshots/insert.png +0 -0
- package/assets/screenshots/panel.png +0 -0
- package/assets/screenshots/preview.png +0 -0
- package/assets/screenshots/tree.png +0 -0
- package/cordis.patch.yml +9 -0
- package/demo/index.html +1129 -0
- package/demo/preview.gif +0 -0
- package/docs/awesome-submission.yml +23 -0
- package/docs/experience.md +252 -0
- package/docs/install.md +26 -0
- package/docs/local-debugging.md +197 -0
- package/docs/publish.md +47 -0
- package/docs/verify-native.md +51 -0
- package/dsh.plugin.json +16 -0
- package/lib/client.js +2709 -0
- package/lib/index.js +385 -0
- package/lib/types/client/format.d.ts +15 -0
- package/lib/types/client/index.d.ts +8 -0
- package/lib/types/client/markdown.d.ts +66 -0
- package/lib/types/client/popupLayout.d.ts +49 -0
- package/lib/types/index.d.ts +39 -0
- package/manifest.json +36 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@doubleelec/dsh-workspace-explorer",
|
|
3
|
+
"version": "0.7.1-fork.4",
|
|
4
|
+
"description": "DeepSeek Harness 工作区文件资源管理器(原生插件):右侧面板展示工作区目录树,点击/拖拽插入文件引用,含搜索/预览/国际化 | Native DSH plugin: workspace file-tree panel with click/drag references, search, preview, i18n.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "lib/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./lib/types/index.d.ts",
|
|
11
|
+
"default": "./lib/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./client": {
|
|
14
|
+
"types": "./lib/types/client/index.d.ts",
|
|
15
|
+
"default": "./lib/client.js"
|
|
16
|
+
},
|
|
17
|
+
"./src/*": "./src/*",
|
|
18
|
+
"./package.json": "./package.json"
|
|
19
|
+
},
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/doubleelec/dsh-workspace-explorer.git"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/doubleelec/dsh-workspace-explorer",
|
|
28
|
+
"keywords": [
|
|
29
|
+
"deepseek-harness",
|
|
30
|
+
"cordis",
|
|
31
|
+
"plugin",
|
|
32
|
+
"workspace",
|
|
33
|
+
"explorer",
|
|
34
|
+
"file-tree",
|
|
35
|
+
"ai-tools"
|
|
36
|
+
],
|
|
37
|
+
"files": [
|
|
38
|
+
"lib",
|
|
39
|
+
"dsh.plugin.json",
|
|
40
|
+
"cordis.patch.yml",
|
|
41
|
+
"docs",
|
|
42
|
+
"demo",
|
|
43
|
+
"assets",
|
|
44
|
+
"README.md",
|
|
45
|
+
"README.zh.md",
|
|
46
|
+
"LICENSE",
|
|
47
|
+
"manifest.json"
|
|
48
|
+
],
|
|
49
|
+
"dsh": {
|
|
50
|
+
"bundle": {
|
|
51
|
+
"patch": "./cordis.patch.yml"
|
|
52
|
+
},
|
|
53
|
+
"client": {
|
|
54
|
+
"inject": [
|
|
55
|
+
"@deepseek-ai/dsh-client-runtime",
|
|
56
|
+
"@deepseek-ai/dsh-client-locale",
|
|
57
|
+
"@deepseek-ai/dsh-client-ui-slots",
|
|
58
|
+
"@deepseek-ai/dsh-client-ui-conversation",
|
|
59
|
+
"@deepseek-ai/dsh-client-ui-input-trigger"
|
|
60
|
+
],
|
|
61
|
+
"platform": "web"
|
|
62
|
+
},
|
|
63
|
+
"plugin": {
|
|
64
|
+
"id": "elec-workspace-explorer",
|
|
65
|
+
"kind": "native",
|
|
66
|
+
"host": "lib/index.js",
|
|
67
|
+
"client": "lib/client.js",
|
|
68
|
+
"hostHandler": "ws-tree.list",
|
|
69
|
+
"clientSlots": [
|
|
70
|
+
"conversation.session.header.utilities",
|
|
71
|
+
"sidebar.footer.action",
|
|
72
|
+
"shell.overlay",
|
|
73
|
+
"conversation.input.dock",
|
|
74
|
+
"settings.section"
|
|
75
|
+
]
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"scripts": {
|
|
79
|
+
"build": "tsdown && tsc -p tsconfig.build.json",
|
|
80
|
+
"prepublishOnly": "npm run build",
|
|
81
|
+
"test": "vitest run",
|
|
82
|
+
"test:watch": "vitest",
|
|
83
|
+
"typecheck": "tsc --noEmit"
|
|
84
|
+
},
|
|
85
|
+
"devDependencies": {
|
|
86
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
87
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.1-rc.2",
|
|
88
|
+
"@deepseek-ai/dsh-client-runtime": "^0.1.1-rc.2",
|
|
89
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.1-rc.2",
|
|
90
|
+
"@deepseek-ai/dsh-client-ui-input-trigger": "^0.1.1-rc.2",
|
|
91
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.1-rc.2",
|
|
92
|
+
"@deepseek-ai/dsh-host-webserver": "^0.1.1-rc.2",
|
|
93
|
+
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
94
|
+
"@types/node": "^22.0.0",
|
|
95
|
+
"@types/react": "^18.3.1",
|
|
96
|
+
"cordis": "^4.0.0-rc.7",
|
|
97
|
+
"lightningcss": "^1.33.0",
|
|
98
|
+
"react": "^18.2.0",
|
|
99
|
+
"react-dom": "^18.2.0",
|
|
100
|
+
"tsdown": "^0.22.14",
|
|
101
|
+
"typescript": "^5.6.0",
|
|
102
|
+
"vitest": "^4.1.11"
|
|
103
|
+
},
|
|
104
|
+
"peerDependencies": {
|
|
105
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
106
|
+
"react": "^18.2.0"
|
|
107
|
+
}
|
|
108
|
+
}
|