ooxml.js 2.5.0 → 2.5.1

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 +1 -1
package/README.md CHANGED
@@ -12,16 +12,19 @@ graph TD
12
12
  ooxml("ooxml.js")
13
13
  odf("odf.js")
14
14
  pdfcodec("pdf-codec")
15
+ mdcodec("markdown-codec")
15
16
  documents("documents.js")
16
17
  cli("document-cli")
17
18
 
18
19
  schema --> ooxml
19
20
  schema --> odf
20
21
  schema --> pdfcodec
22
+ schema --> mdcodec
21
23
  schema --> documents
22
24
  ooxml --> documents
23
25
  odf --> documents
24
26
  pdfcodec --> documents
27
+ mdcodec --> documents
25
28
  documents --> cli
26
29
  odf --> cli
27
30
 
@@ -29,6 +32,7 @@ graph TD
29
32
  click ooxml "https://github.com/ExaDev/ooxml.js" "ooxml.js"
30
33
  click odf "https://github.com/ExaDev/odf.js" "odf.js"
31
34
  click pdfcodec "https://github.com/ExaDev/pdf-codec" "pdf-codec"
35
+ click mdcodec "https://github.com/ExaDev/markdown-codec" "markdown-codec"
32
36
  click documents "https://github.com/ExaDev/documents.js" "documents.js"
33
37
  click cli "https://github.com/ExaDev/document-cli" "document-cli"
34
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ooxml.js",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
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": {