@mdgate/converters 0.5.5 → 0.5.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 +2 -1
  2. package/package.json +32 -32
package/README.md CHANGED
@@ -21,7 +21,8 @@ const convert = create(all());
21
21
 
22
22
  `all()` registers every converter that needs no configuration. `image()`,
23
23
  `audio()`, and `video()` need callbacks, so they are exported but not included
24
- in `all()`.
24
+ in `all()`. PDF outside Node needs `setPdfMaps()` and, on Wrangler, a Data rule
25
+ for `**/*.bin`. See the [repository README](https://github.com/mdgate/converters#pdf-mapping-tables).
25
26
 
26
27
  Only need one format? Install just that package instead — for example
27
28
  `@mdgate/docx` — and call its identical `toMarkdown`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mdgate/converters",
3
- "version": "0.5.5",
3
+ "version": "0.5.7",
4
4
  "description": "Official mdgate converter bundle",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -22,37 +22,37 @@
22
22
  "prepublishOnly": "bun run build"
23
23
  },
24
24
  "dependencies": {
25
- "@mdgate/audio": "0.5.5",
26
- "@mdgate/core": "0.5.5",
27
- "@mdgate/csv": "0.5.5",
28
- "@mdgate/data": "0.5.5",
29
- "@mdgate/doc": "0.5.5",
30
- "@mdgate/docx": "0.5.5",
31
- "@mdgate/email": "0.5.5",
32
- "@mdgate/epub": "0.5.5",
33
- "@mdgate/fb2": "0.5.5",
34
- "@mdgate/html": "0.5.5",
35
- "@mdgate/hwp": "0.5.5",
36
- "@mdgate/image": "0.5.5",
37
- "@mdgate/ipynb": "0.5.5",
38
- "@mdgate/keynote": "0.5.5",
39
- "@mdgate/latex": "0.5.5",
40
- "@mdgate/mobi": "0.5.5",
41
- "@mdgate/numbers": "0.5.5",
42
- "@mdgate/odf": "0.5.5",
43
- "@mdgate/onenote": "0.5.5",
44
- "@mdgate/pages": "0.5.5",
45
- "@mdgate/pdf": "0.5.5",
46
- "@mdgate/ppt": "0.5.5",
47
- "@mdgate/pptx": "0.5.5",
48
- "@mdgate/rtf": "0.5.5",
49
- "@mdgate/subtitle": "0.5.5",
50
- "@mdgate/text": "0.5.5",
51
- "@mdgate/video": "0.5.5",
52
- "@mdgate/visio": "0.5.5",
53
- "@mdgate/wps": "0.5.5",
54
- "@mdgate/xlsx": "0.5.5",
55
- "@mdgate/zip": "0.5.5"
25
+ "@mdgate/audio": "0.5.7",
26
+ "@mdgate/core": "0.5.7",
27
+ "@mdgate/csv": "0.5.7",
28
+ "@mdgate/data": "0.5.7",
29
+ "@mdgate/doc": "0.5.7",
30
+ "@mdgate/docx": "0.5.7",
31
+ "@mdgate/email": "0.5.7",
32
+ "@mdgate/epub": "0.5.7",
33
+ "@mdgate/fb2": "0.5.7",
34
+ "@mdgate/html": "0.5.7",
35
+ "@mdgate/hwp": "0.5.7",
36
+ "@mdgate/image": "0.5.7",
37
+ "@mdgate/ipynb": "0.5.7",
38
+ "@mdgate/keynote": "0.5.7",
39
+ "@mdgate/latex": "0.5.7",
40
+ "@mdgate/mobi": "0.5.7",
41
+ "@mdgate/numbers": "0.5.7",
42
+ "@mdgate/odf": "0.5.7",
43
+ "@mdgate/onenote": "0.5.7",
44
+ "@mdgate/pages": "0.5.7",
45
+ "@mdgate/pdf": "0.5.7",
46
+ "@mdgate/ppt": "0.5.7",
47
+ "@mdgate/pptx": "0.5.7",
48
+ "@mdgate/rtf": "0.5.7",
49
+ "@mdgate/subtitle": "0.5.7",
50
+ "@mdgate/text": "0.5.7",
51
+ "@mdgate/video": "0.5.7",
52
+ "@mdgate/visio": "0.5.7",
53
+ "@mdgate/wps": "0.5.7",
54
+ "@mdgate/xlsx": "0.5.7",
55
+ "@mdgate/zip": "0.5.7"
56
56
  },
57
57
  "publishConfig": {
58
58
  "access": "public"