ooxml.js 2.9.2 → 2.9.4

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
@@ -13,6 +13,7 @@ graph TD
13
13
  odf("odf.js")
14
14
  pdfcodec("pdf-codec")
15
15
  mdcodec("markdown-codec")
16
+ bytecodec("byte-codec")
16
17
  documents("documents.js")
17
18
  mcp("document-mcp")
18
19
  cli("document-cli")
@@ -26,6 +27,8 @@ graph TD
26
27
  odf --> documents
27
28
  pdfcodec --> documents
28
29
  mdcodec --> documents
30
+ bytecodec --> pdfcodec
31
+ bytecodec --> documents
29
32
  documents --> mcp
30
33
  pdfcodec --> mcp
31
34
  documents --> cli
@@ -37,6 +40,7 @@ graph TD
37
40
  click odf "https://github.com/ExaDev/odf.js" "odf.js"
38
41
  click pdfcodec "https://github.com/ExaDev/pdf-codec" "pdf-codec"
39
42
  click mdcodec "https://github.com/ExaDev/markdown-codec" "markdown-codec"
43
+ click bytecodec "https://github.com/ExaDev/byte-codec" "byte-codec"
40
44
  click documents "https://github.com/ExaDev/documents.js" "documents.js"
41
45
  click mcp "https://github.com/ExaDev/document-mcp" "document-mcp"
42
46
  click cli "https://github.com/ExaDev/document-cli" "document-cli"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ooxml.js",
3
- "version": "2.9.2",
3
+ "version": "2.9.4",
4
4
  "description": "Type-safe, lossless round-trip conversion between OOXML packages (docx, pptx, xlsx) and JSON, built on Zod 4 codecs.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -78,7 +78,7 @@
78
78
  "license": "MIT",
79
79
  "packageManager": "pnpm@11.6.0",
80
80
  "dependencies": {
81
- "document-schema.js": "^2.5.1",
81
+ "document-schema.js": "^2.5.2",
82
82
  "fast-xml-parser": "^5.10.1",
83
83
  "fflate": "^0.8.3",
84
84
  "zod": "^4.4.3"