-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.97 KB
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
70
71
72
{
"name": "calibre-node",
"version": "0.3.9",
"author": "Atharva Kusumbia <atharvakusumbia@gmail.com>",
"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",
"test": "npm run build && node --import tsx --test src/*.test.ts",
"test:unit": "node --import tsx --test src/pool.test.ts src/buildCommand.test.ts src/execPromise.test.ts src/index.test.ts",
"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": "^10.0.1",
"@types/node": "^24.13.4",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"eslint": "^10.10.0",
"prettier": "^3.9.6",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.0"
},
"engines": {
"node": ">=24.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"
}
}