pdf-codec 1.11.5 → 1.11.7

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
@@ -18,6 +18,7 @@ graph TD
18
18
  pdfcodec("pdf-codec")
19
19
  mdcodec("markdown-codec")
20
20
  documents("documents.js")
21
+ mcp("document-mcp")
21
22
  cli("document-cli")
22
23
 
23
24
  schema --> ooxml
@@ -29,8 +30,11 @@ graph TD
29
30
  odf --> documents
30
31
  pdfcodec --> documents
31
32
  mdcodec --> documents
33
+ documents --> mcp
34
+ pdfcodec --> mcp
32
35
  documents --> cli
33
36
  odf --> cli
37
+ pdfcodec --> cli
34
38
 
35
39
  click schema "https://github.com/ExaDev/document-schema.js" "document-schema.js"
36
40
  click ooxml "https://github.com/ExaDev/ooxml.js" "ooxml.js"
@@ -38,6 +42,7 @@ graph TD
38
42
  click pdfcodec "https://github.com/ExaDev/pdf-codec" "pdf-codec"
39
43
  click mdcodec "https://github.com/ExaDev/markdown-codec" "markdown-codec"
40
44
  click documents "https://github.com/ExaDev/documents.js" "documents.js"
45
+ click mcp "https://github.com/ExaDev/document-mcp" "document-mcp"
41
46
  click cli "https://github.com/ExaDev/document-cli" "document-cli"
42
47
 
43
48
  style pdfcodec fill:#f9a825,stroke:#333,stroke-width:3px
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pdf-codec",
3
- "version": "1.11.5",
3
+ "version": "1.11.7",
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": "^2.3.2",
73
+ "document-schema.js": "^2.3.3",
74
74
  "fflate": "^0.8.3",
75
75
  "zod": "^4.4.3"
76
76
  },