dsh-quick-toc 0.3.2 → 0.4.0
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/CHANGELOG.en.md +104 -0
- package/CHANGELOG.md +82 -46
- package/README.en.md +36 -27
- package/README.md +35 -26
- package/lib/client.js +694 -62
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-quick-toc",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Conversation TOC for DeepSeek Harness (DSH): turn-grouped Markdown heading outline with keyword search (title/full-text scope), in-chat match highlighting, auto-follow and smooth jump navigation",
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Conversation TOC for DeepSeek Harness (DSH): turn-grouped Markdown heading outline with keyword search (title/full-text scope), in-chat match highlighting, per-level heading filtering, auto-follow and smooth jump navigation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|
|
7
7
|
"files": [
|
|
@@ -10,10 +10,11 @@
|
|
|
10
10
|
"README.md",
|
|
11
11
|
"README.en.md",
|
|
12
12
|
"CHANGELOG.md",
|
|
13
|
+
"CHANGELOG.en.md",
|
|
13
14
|
"LICENSE"
|
|
14
15
|
],
|
|
15
16
|
"engines": {
|
|
16
|
-
"dsh": ">=0.1.
|
|
17
|
+
"dsh": ">=0.1.5-rc.1"
|
|
17
18
|
},
|
|
18
19
|
"exports": {
|
|
19
20
|
".": "./lib/index.js",
|
|
@@ -34,15 +35,15 @@
|
|
|
34
35
|
},
|
|
35
36
|
"compatibility": {
|
|
36
37
|
"dshReleases": {
|
|
37
|
-
"0.1.
|
|
38
|
-
"0.1.5-rc.
|
|
38
|
+
"0.1.5-rc.1": "compatible",
|
|
39
|
+
"0.1.5-rc.2": "compatible"
|
|
39
40
|
}
|
|
40
41
|
}
|
|
41
42
|
},
|
|
42
43
|
"peerDependencies": {
|
|
43
44
|
"react": "^18.2.0",
|
|
44
|
-
"@deepseek-ai/dsh-client-ui-chat": ">=0.1.
|
|
45
|
-
"@deepseek-ai/dsh-client-ui-conversation": ">=0.1.
|
|
45
|
+
"@deepseek-ai/dsh-client-ui-chat": ">=0.1.5-rc.1",
|
|
46
|
+
"@deepseek-ai/dsh-client-ui-conversation": ">=0.1.5-rc.1"
|
|
46
47
|
},
|
|
47
48
|
"license": "MIT",
|
|
48
49
|
"keywords": [
|