epub-to-pdf-cli 1.0.9 → 1.1.0
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/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epub-to-pdf-cli",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
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": {
|
|
@@ -36,9 +36,14 @@
|
|
|
36
36
|
"homepage": "https://github.com/surajsutar7/epub-to-pdf-cli#readme",
|
|
37
37
|
"scripts": {
|
|
38
38
|
"prepublishOnly": "node scripts/prepublish.js",
|
|
39
|
-
"test": "node test.js"
|
|
39
|
+
"test": "node test.js",
|
|
40
|
+
"release": "standard-version",
|
|
41
|
+
"release:dry": "standard-version --dry-run"
|
|
40
42
|
},
|
|
41
43
|
"engines": {
|
|
42
44
|
"node": ">=18"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"standard-version": "^9.5.0"
|
|
43
48
|
}
|
|
44
49
|
}
|