markdown-codec 1.2.1 → 1.2.3

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 +5 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -12,6 +12,7 @@ graph TD
12
12
  ooxml("ooxml.js")
13
13
  odf("odf.js")
14
14
  pdfcodec("pdf-codec")
15
+ bytecodec("byte-codec")
15
16
  mdcodec("markdown-codec")
16
17
  documents("documents.js")
17
18
  mcp("document-mcp")
@@ -20,11 +21,14 @@ graph TD
20
21
  schema --> ooxml
21
22
  schema --> odf
22
23
  schema --> pdfcodec
24
+ schema --> bytecodec
23
25
  schema --> mdcodec
24
26
  schema --> documents
27
+ bytecodec --> pdfcodec
25
28
  ooxml --> documents
26
29
  odf --> documents
27
30
  pdfcodec --> documents
31
+ bytecodec --> documents
28
32
  mdcodec --> documents
29
33
  documents --> mcp
30
34
  pdfcodec --> mcp
@@ -36,6 +40,7 @@ graph TD
36
40
  click ooxml "https://github.com/ExaDev/ooxml.js" "ooxml.js"
37
41
  click odf "https://github.com/ExaDev/odf.js" "odf.js"
38
42
  click pdfcodec "https://github.com/ExaDev/pdf-codec" "pdf-codec"
43
+ click bytecodec "https://github.com/ExaDev/byte-codec" "byte-codec"
39
44
  click mdcodec "https://github.com/ExaDev/markdown-codec" "markdown-codec"
40
45
  click documents "https://github.com/ExaDev/documents.js" "documents.js"
41
46
  click mcp "https://github.com/ExaDev/document-mcp" "document-mcp"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "markdown-codec",
3
- "version": "1.2.1",
3
+ "version": "1.2.3",
4
4
  "description": "Hand-written CommonMark+GFM <-> ContentDocument codec, built on document-schema.js",
5
5
  "type": "module",
6
6
  "repository": {
@@ -79,7 +79,7 @@
79
79
  "license": "MIT",
80
80
  "packageManager": "pnpm@11.6.0",
81
81
  "dependencies": {
82
- "document-schema.js": "^2.5.1",
82
+ "document-schema.js": "^2.5.2",
83
83
  "zod": "^4.4.3"
84
84
  },
85
85
  "devDependencies": {