-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.76 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "calibre-node",
"version": "0.3.3",
"author": "Atharva Kusumbia <[email protected]>",
"license": "MIT",
"description": "A lightweight, high-performance Node.js ebook conversion library powered by Calibre, featuring built-in queue management and parallel processing capabilities.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/athrvk/calibre-node",
"repository": {
"type": "git",
"url": "git+https://github.com/athrvk/calibre-node.git"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"build:check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"install:calibre": "node dist/app.js install calibre"
},
"bin": {
"calibre-node": "dist/app.js"
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.16.0",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"ebook-converter",
"pdf-conversion",
"calibre-nodejs",
"document-transformation",
"ebook-processing",
"file-conversion",
"multiformat-converter",
"nodejs-calibre",
"Convert PDF",
"Convert",
"NodeJS PDF Converter",
"Ebook Converter",
"Convert Ebook",
"Nodejs Calibre",
"Nodejs Converter Calibre"
],
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"inquirer": "^12.2.0"
}
}