@sparkelf/dsh-plugin-document-attachments 0.1.0-rc.10 → 0.1.0-rc.9
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/package.json +59 -59
package/package.json
CHANGED
|
@@ -1,60 +1,36 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"@deepseek-ai/schemastery": ">=3.18.1",
|
|
4
|
-
"fflate": "^0.8.2"
|
|
5
|
-
},
|
|
2
|
+
"name": "@sparkelf/dsh-plugin-document-attachments",
|
|
6
3
|
"description": "Provider-neutral parser and MinerU provider for durable PDF and Office document attachments",
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
"
|
|
10
|
-
"@deepseek-ai/dsh-attachment": "^0.1.2-alpha.1",
|
|
11
|
-
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.1",
|
|
12
|
-
"@deepseek-ai/dsh-client-locale": "^0.1.2-alpha.1",
|
|
13
|
-
"@deepseek-ai/dsh-client-ui-attachment": "^0.1.2-alpha.1",
|
|
14
|
-
"@deepseek-ai/dsh-client-ui-chat": "^0.1.2-alpha.1",
|
|
15
|
-
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.2-alpha.1",
|
|
16
|
-
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-alpha.1",
|
|
17
|
-
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.1",
|
|
18
|
-
"@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.1",
|
|
19
|
-
"@deepseek-ai/dsh-client-ui-trajectory": "^0.1.2-alpha.1",
|
|
20
|
-
"@deepseek-ai/dsh-host-webserver": "^0.1.2-alpha.1",
|
|
21
|
-
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.1",
|
|
22
|
-
"@deepseek-ai/dsh-llm": "^0.1.2-alpha.1",
|
|
23
|
-
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.1",
|
|
24
|
-
"@types/react": "~18.3.1",
|
|
25
|
-
"react": "^18.2.0"
|
|
4
|
+
"version": "0.1.0-rc.9",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
26
7
|
},
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
"@deepseek-ai/dsh-client-ui-attachment",
|
|
32
|
-
"@deepseek-ai/dsh-client-ui-chat",
|
|
33
|
-
"@deepseek-ai/dsh-client-ui-conversation",
|
|
34
|
-
"@deepseek-ai/dsh-client-ui-trajectory",
|
|
35
|
-
"@deepseek-ai/dsh-client-ui-renderer"
|
|
36
|
-
],
|
|
37
|
-
"platform": "web"
|
|
38
|
-
}
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/SparkElf/deepseek-harness-plus.git",
|
|
11
|
+
"directory": "packages/plus/document-attachments"
|
|
39
12
|
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "lib/index.js",
|
|
15
|
+
"types": "lib/types/index.d.ts",
|
|
40
16
|
"exports": {
|
|
41
17
|
".": {
|
|
42
|
-
"
|
|
43
|
-
"
|
|
18
|
+
"types": "./lib/types/index.d.ts",
|
|
19
|
+
"default": "./lib/index.js"
|
|
44
20
|
},
|
|
45
|
-
"./
|
|
46
|
-
"
|
|
47
|
-
"
|
|
21
|
+
"./mineru": {
|
|
22
|
+
"types": "./lib/types/mineru.d.ts",
|
|
23
|
+
"default": "./lib/mineru.js"
|
|
48
24
|
},
|
|
49
25
|
"./invariant": {
|
|
50
|
-
"
|
|
51
|
-
"
|
|
26
|
+
"types": "./lib/types/invariant.d.ts",
|
|
27
|
+
"default": "./lib/invariant.js"
|
|
52
28
|
},
|
|
53
|
-
"./
|
|
54
|
-
|
|
55
|
-
"types": "./lib/types/
|
|
56
|
-
|
|
57
|
-
|
|
29
|
+
"./package.json": "./package.json",
|
|
30
|
+
"./client": {
|
|
31
|
+
"types": "./lib/types/client/index.d.ts",
|
|
32
|
+
"default": "./lib/client.js"
|
|
33
|
+
}
|
|
58
34
|
},
|
|
59
35
|
"files": [
|
|
60
36
|
"lib/index.js",
|
|
@@ -65,8 +41,6 @@
|
|
|
65
41
|
"lib/types/**/*.d.ts"
|
|
66
42
|
],
|
|
67
43
|
"license": "MIT",
|
|
68
|
-
"main": "lib/index.js",
|
|
69
|
-
"name": "@sparkelf/dsh-plugin-document-attachments",
|
|
70
44
|
"peerDependencies": {
|
|
71
45
|
"@deepseek-ai/cordis": ">=4.0.1",
|
|
72
46
|
"@deepseek-ai/dsh-api-session-controller": ">=0.1.2-alpha.1",
|
|
@@ -83,15 +57,41 @@
|
|
|
83
57
|
"@deepseek-ai/dsh-llm": ">=0.1.2-alpha.1",
|
|
84
58
|
"@deepseek-ai/dsh-typert-protocol": ">=0.1.2-alpha.1"
|
|
85
59
|
},
|
|
86
|
-
"
|
|
87
|
-
"
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@deepseek-ai/schemastery": ">=3.18.1",
|
|
62
|
+
"fflate": "^0.8.2"
|
|
88
63
|
},
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@types/react": "~18.3.1",
|
|
66
|
+
"react": "^18.2.0",
|
|
67
|
+
"@deepseek-ai/dsh-api-session-controller": "^0.1.2-alpha.1",
|
|
68
|
+
"@deepseek-ai/dsh-attachment": "^0.1.2-alpha.1",
|
|
69
|
+
"@deepseek-ai/dsh-client-connection": "^0.1.2-alpha.1",
|
|
70
|
+
"@deepseek-ai/dsh-client-locale": "^0.1.2-alpha.1",
|
|
71
|
+
"@deepseek-ai/dsh-client-ui-chat": "^0.1.2-alpha.1",
|
|
72
|
+
"@deepseek-ai/cordis": "^4.0.1",
|
|
73
|
+
"@deepseek-ai/dsh-client-ui-attachment": "^0.1.2-alpha.1",
|
|
74
|
+
"@deepseek-ai/dsh-client-ui-renderer": "^0.1.2-alpha.1",
|
|
75
|
+
"@deepseek-ai/dsh-client-ui-slots": "^0.1.2-alpha.1",
|
|
76
|
+
"@deepseek-ai/dsh-client-ui-trajectory": "^0.1.2-alpha.1",
|
|
77
|
+
"@deepseek-ai/dsh-host-webserver": "^0.1.2-alpha.1",
|
|
78
|
+
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.1",
|
|
79
|
+
"@deepseek-ai/dsh-llm": "^0.1.2-alpha.1",
|
|
80
|
+
"@deepseek-ai/dsh-typert-protocol": "^0.1.2-alpha.1",
|
|
81
|
+
"@deepseek-ai/dsh-client-ui-primitives": "^0.1.2-alpha.1",
|
|
82
|
+
"@deepseek-ai/dsh-client-ui-conversation": "^0.1.2-alpha.1"
|
|
93
83
|
},
|
|
94
|
-
"
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
84
|
+
"dsh": {
|
|
85
|
+
"client": {
|
|
86
|
+
"inject": [
|
|
87
|
+
"@deepseek-ai/dsh-client-locale",
|
|
88
|
+
"@deepseek-ai/dsh-client-ui-attachment",
|
|
89
|
+
"@deepseek-ai/dsh-client-ui-chat",
|
|
90
|
+
"@deepseek-ai/dsh-client-ui-conversation",
|
|
91
|
+
"@deepseek-ai/dsh-client-ui-trajectory",
|
|
92
|
+
"@deepseek-ai/dsh-client-ui-renderer"
|
|
93
|
+
],
|
|
94
|
+
"platform": "web"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|