-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.86 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-sessiongraph",
"version": "0.1.0",
"description": "DSH plugin: parse current session history into editable structured mind maps and export Markdown, Mermaid, PlantUML, XMind text, and TODO briefs.",
"type": "module",
"main": "lib/index.js",
"exports": {
".": {
"default": "./lib/index.js"
},
"./client": {
"default": "./lib/client.js"
},
"./extractor": {
"default": "./lib/extractor.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=20"
},
"dsh": {
"bundle": {
"patch": "./cordis.patch.yml"
},
"client": {
"inject": [
"@deepseek-ai/dsh-client-runtime",
"@deepseek-ai/dsh-client-locale",
"@deepseek-ai/dsh-client-ui-slots",
"@deepseek-ai/dsh-client-ui-conversation"
],
"platform": "web"
}
},
"license": "MIT",
"author": "lwklbb",
"keywords": [
"dsh",
"plugin",
"session",
"mindmap",
"mermaid",
"plantuml",
"xmind"
],
"scripts": {
"test": "node --test test/extractor.test.mjs",
"check": "node --check lib/index.js && node --check lib/extractor.js && node --check lib/client.js"
},
"peerDependencies": {
"@deepseek-ai/cordis": "^4.0.1",
"@deepseek-ai/dsh-client-locale": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-runtime": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.0-rc.6",
"@deepseek-ai/dsh-client-ui-slots": "^0.1.0-rc.6",
"react": "^18.2.0"
},
"files": [
"lib",
"test",
"docs",
"cordis.patch.yml",
"README.md",
"LICENSE",
"package.json"
],
"homepage": "https://github.com/lwklbb/DSH-SessionGraph#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lwklbb/DSH-SessionGraph.git"
},
"bugs": {
"url": "https://github.com/lwklbb/DSH-SessionGraph/issues"
}
}