pdf-codec 1.4.0 → 1.4.2

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
@@ -16,16 +16,19 @@ graph TD
16
16
  ooxml("ooxml.js")
17
17
  odf("odf.js")
18
18
  pdfcodec("pdf-codec")
19
+ mdcodec("markdown-codec")
19
20
  documents("documents.js")
20
21
  cli("document-cli")
21
22
 
22
23
  schema --> ooxml
23
24
  schema --> odf
24
25
  schema --> pdfcodec
26
+ schema --> mdcodec
25
27
  schema --> documents
26
28
  ooxml --> documents
27
29
  odf --> documents
28
30
  pdfcodec --> documents
31
+ mdcodec --> documents
29
32
  documents --> cli
30
33
  odf --> cli
31
34
 
@@ -33,6 +36,7 @@ graph TD
33
36
  click ooxml "https://github.com/ExaDev/ooxml.js" "ooxml.js"
34
37
  click odf "https://github.com/ExaDev/odf.js" "odf.js"
35
38
  click pdfcodec "https://github.com/ExaDev/pdf-codec" "pdf-codec"
39
+ click mdcodec "https://github.com/ExaDev/markdown-codec" "markdown-codec"
36
40
  click documents "https://github.com/ExaDev/documents.js" "documents.js"
37
41
  click cli "https://github.com/ExaDev/document-cli" "document-cli"
38
42
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pdf-codec",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "description": "Hand-written, dependency-minimal PDF codec: parses arbitrary real-world PDFs and generates new ones, built on document-schema.js's LayoutDocument pivot and Zod 4 codecs.",
5
5
  "type": "module",
6
6
  "repository": {
@@ -70,7 +70,7 @@
70
70
  "license": "MIT",
71
71
  "packageManager": "pnpm@11.6.0",
72
72
  "dependencies": {
73
- "document-schema.js": "^1.5.3",
73
+ "document-schema.js": "^2.0.0",
74
74
  "fflate": "^0.8.3",
75
75
  "zod": "^4.4.3"
76
76
  },