@huanlin/dsh-plugin-mineru 0.2.4 → 0.3.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/lib/client.js +1025 -1036
- package/lib/client.js.map +1 -1
- package/lib/index.d.ts +21 -21
- package/lib/index.js +876 -875
- package/package.json +15 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@huanlin/dsh-plugin-mineru",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,12 +32,10 @@
|
|
|
32
32
|
},
|
|
33
33
|
"client": {
|
|
34
34
|
"inject": [
|
|
35
|
-
"@deepseek-ai/dsh-client-runtime",
|
|
36
35
|
"@deepseek-ai/dsh-client-locale",
|
|
37
36
|
"@deepseek-ai/dsh-client-connection",
|
|
38
37
|
"@deepseek-ai/dsh-client-ui-settings",
|
|
39
|
-
"@deepseek-ai/dsh-client-ui-slots"
|
|
40
|
-
"@deepseek-ai/dsh-client-ui-primitives"
|
|
38
|
+
"@deepseek-ai/dsh-client-ui-slots"
|
|
41
39
|
],
|
|
42
40
|
"platform": "web"
|
|
43
41
|
}
|
|
@@ -46,28 +44,27 @@
|
|
|
46
44
|
"schemastery": "^3.18.0"
|
|
47
45
|
},
|
|
48
46
|
"peerDependencies": {
|
|
49
|
-
"@deepseek-ai/
|
|
50
|
-
"@deepseek-ai/dsh-client-
|
|
51
|
-
"@deepseek-ai/dsh-client-
|
|
52
|
-
"@deepseek-ai/dsh-client-ui-
|
|
53
|
-
"@deepseek-ai/dsh-client-ui-settings": "^0.
|
|
54
|
-
"@deepseek-ai/dsh-client-ui-slots": "^0.
|
|
55
|
-
"@deepseek-ai/dsh-
|
|
56
|
-
"@deepseek-ai/dsh-tools": "^0.
|
|
57
|
-
"cordis": "^4.0.0-rc.7",
|
|
47
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
48
|
+
"@deepseek-ai/dsh-client-connection": "^0.1.5-rc.1",
|
|
49
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.5-rc.1",
|
|
50
|
+
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.5-rc.1",
|
|
51
|
+
"@deepseek-ai/dsh-client-ui-settings": "^0.1.5-rc.1",
|
|
52
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.5-rc.1",
|
|
53
|
+
"@deepseek-ai/dsh-llm": "^0.1.5-rc.1",
|
|
54
|
+
"@deepseek-ai/dsh-tools": "^0.1.5-rc.1",
|
|
58
55
|
"react": "^18.2.0"
|
|
59
56
|
},
|
|
60
57
|
"peerDependenciesMeta": {
|
|
61
|
-
"@deepseek-ai/
|
|
58
|
+
"@deepseek-ai/cordis": {
|
|
62
59
|
"optional": true
|
|
63
60
|
},
|
|
64
|
-
"@deepseek-ai/dsh-client-
|
|
61
|
+
"@deepseek-ai/dsh-client-connection": {
|
|
65
62
|
"optional": true
|
|
66
63
|
},
|
|
67
|
-
"@deepseek-ai/dsh-client-
|
|
64
|
+
"@deepseek-ai/dsh-client-locale": {
|
|
68
65
|
"optional": true
|
|
69
66
|
},
|
|
70
|
-
"@deepseek-ai/dsh-client-ui-
|
|
67
|
+
"@deepseek-ai/dsh-client-ui-renderer": {
|
|
71
68
|
"optional": true
|
|
72
69
|
},
|
|
73
70
|
"@deepseek-ai/dsh-client-ui-settings": {
|
|
@@ -76,15 +73,12 @@
|
|
|
76
73
|
"@deepseek-ai/dsh-client-ui-slots": {
|
|
77
74
|
"optional": true
|
|
78
75
|
},
|
|
79
|
-
"@deepseek-ai/dsh-
|
|
76
|
+
"@deepseek-ai/dsh-llm": {
|
|
80
77
|
"optional": true
|
|
81
78
|
},
|
|
82
79
|
"@deepseek-ai/dsh-tools": {
|
|
83
80
|
"optional": true
|
|
84
81
|
},
|
|
85
|
-
"cordis": {
|
|
86
|
-
"optional": true
|
|
87
|
-
},
|
|
88
82
|
"react": {
|
|
89
83
|
"optional": true
|
|
90
84
|
}
|