epub-to-pdf-cli 1.1.3 → 1.1.10
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.
- package/README.md +14 -7
- package/package.json +13 -2
- package/scripts/prepublish.js +1 -1
package/README.md
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-

|
|
4
|
-

|
|
1
|
+
<h2 align="center">📘 EPUB to PDF CLI – Node.js EPUB to PDF Converter using Calibre
|
|
2
|
+
<p align="center">
|
|
5
3
|
|
|
6
|
-
|
|
4
|
+

|
|
5
|
+

|
|
6
|
+

|
|
7
|
+

|
|
8
|
+
</p>
|
|
9
|
+
</h2>
|
|
7
10
|
|
|
8
|
-
**epub-to-pdf-cli** is a lightweight **EPUB to PDF converter** built with **Node.js**, powered by **Calibre**.
|
|
9
11
|
|
|
10
|
-
|
|
12
|
+

|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
**epub-to-pdf-cli** is a fast and reliable **Node.js command-line tool** to convert **EPUB files to PDF** using **Calibre**.
|
|
16
|
+
|
|
17
|
+
It supports CLI usage, automation scripts, CI pipelines, and programmatic Node.js integration.
|
|
11
18
|
|
|
12
19
|
This tool is ideal for:
|
|
13
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epub-to-pdf-cli",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "CLI tool to convert EPUB to PDF using Calibre. Works with npx and global install.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,7 +22,18 @@
|
|
|
22
22
|
"calibre",
|
|
23
23
|
"ebook-convert",
|
|
24
24
|
"cli",
|
|
25
|
-
"npx"
|
|
25
|
+
"npx",
|
|
26
|
+
"epub to pdf",
|
|
27
|
+
"epub pdf converter",
|
|
28
|
+
"epub to pdf cli",
|
|
29
|
+
"node epub to pdf",
|
|
30
|
+
"calibre epub",
|
|
31
|
+
"ebook converter",
|
|
32
|
+
"ebook epub pdf",
|
|
33
|
+
"epub pdf linux",
|
|
34
|
+
"epub pdf mac",
|
|
35
|
+
"epub pdf windows",
|
|
36
|
+
"epub cli tool"
|
|
26
37
|
],
|
|
27
38
|
"author": "Suraj Sutar",
|
|
28
39
|
"license": "MIT",
|
package/scripts/prepublish.js
CHANGED