odf.js 2.3.4 → 2.3.6
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/README.md +5 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -18,6 +18,7 @@ graph TD
|
|
|
18
18
|
pdfcodec("pdf-codec")
|
|
19
19
|
mdcodec("markdown-codec")
|
|
20
20
|
documents("documents.js")
|
|
21
|
+
mcp("document-mcp")
|
|
21
22
|
cli("document-cli")
|
|
22
23
|
|
|
23
24
|
schema --> ooxml
|
|
@@ -29,8 +30,11 @@ graph TD
|
|
|
29
30
|
odf --> documents
|
|
30
31
|
pdfcodec --> documents
|
|
31
32
|
mdcodec --> documents
|
|
33
|
+
documents --> mcp
|
|
34
|
+
pdfcodec --> mcp
|
|
32
35
|
documents --> cli
|
|
33
36
|
odf --> cli
|
|
37
|
+
pdfcodec --> cli
|
|
34
38
|
|
|
35
39
|
click schema "https://github.com/ExaDev/document-schema.js" "document-schema.js"
|
|
36
40
|
click ooxml "https://github.com/ExaDev/ooxml.js" "ooxml.js"
|
|
@@ -38,6 +42,7 @@ graph TD
|
|
|
38
42
|
click pdfcodec "https://github.com/ExaDev/pdf-codec" "pdf-codec"
|
|
39
43
|
click mdcodec "https://github.com/ExaDev/markdown-codec" "markdown-codec"
|
|
40
44
|
click documents "https://github.com/ExaDev/documents.js" "documents.js"
|
|
45
|
+
click mcp "https://github.com/ExaDev/document-mcp" "document-mcp"
|
|
41
46
|
click cli "https://github.com/ExaDev/document-cli" "document-cli"
|
|
42
47
|
|
|
43
48
|
style odf fill:#f9a825,stroke:#333,stroke-width:3px
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "odf.js",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.6",
|
|
4
4
|
"description": "Type-safe, lossless round-trip conversion between OpenDocument Format packages (odt, ods, odp) and JSON, hand-written and dependency-minimal, built on Zod 4 codecs.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"license": "MIT",
|
|
70
70
|
"packageManager": "pnpm@11.6.0",
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"document-schema.js": "^2.3.
|
|
72
|
+
"document-schema.js": "^2.3.2",
|
|
73
73
|
"fast-xml-parser": "^5.10.1",
|
|
74
74
|
"fflate": "^0.8.3",
|
|
75
75
|
"zod": "^4.4.3"
|