odf.js 2.4.21 → 2.4.23

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -17,6 +17,7 @@ graph TD
17
17
  odf("odf.js")
18
18
  pdfcodec("pdf-codec")
19
19
  mdcodec("markdown-codec")
20
+ bytecodec("byte-codec")
20
21
  documents("documents.js")
21
22
  mcp("document-mcp")
22
23
  cli("document-cli")
@@ -30,6 +31,8 @@ graph TD
30
31
  odf --> documents
31
32
  pdfcodec --> documents
32
33
  mdcodec --> documents
34
+ bytecodec --> pdfcodec
35
+ bytecodec --> documents
33
36
  documents --> mcp
34
37
  pdfcodec --> mcp
35
38
  documents --> cli
@@ -41,6 +44,7 @@ graph TD
41
44
  click odf "https://github.com/ExaDev/odf.js" "odf.js"
42
45
  click pdfcodec "https://github.com/ExaDev/pdf-codec" "pdf-codec"
43
46
  click mdcodec "https://github.com/ExaDev/markdown-codec" "markdown-codec"
47
+ click bytecodec "https://github.com/ExaDev/byte-codec" "byte-codec"
44
48
  click documents "https://github.com/ExaDev/documents.js" "documents.js"
45
49
  click mcp "https://github.com/ExaDev/document-mcp" "document-mcp"
46
50
  click cli "https://github.com/ExaDev/document-cli" "document-cli"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "odf.js",
3
- "version": "2.4.21",
3
+ "version": "2.4.23",
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": {
@@ -77,7 +77,7 @@
77
77
  "license": "MIT",
78
78
  "packageManager": "pnpm@11.6.0",
79
79
  "dependencies": {
80
- "document-schema.js": "^2.5.1",
80
+ "document-schema.js": "^2.5.2",
81
81
  "fast-xml-parser": "^5.10.1",
82
82
  "fflate": "^0.8.3",
83
83
  "zod": "^4.4.3"