-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "bookracy-convertor",
"version": "1.0.0",
"description": "A tool to convert EPUB files to PDF using jsPDF",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"dom-parser": "^1.1.5",
"html-to-text": "^9.0.5",
"jspdf": "^2.5.1",
"jszip": "^3.7.1",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"eslint": "^8.48.0",
"@types/xmldom": "^0.1.34"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bookracy/epub-convertor.git"
},
"keywords": [
"epub",
"pdf",
"convert",
"jsPDF",
"EPUB",
"HTML",
"JavaScript"
],
"author": "rdwxth",
"license": "MIT",
"bugs": {
"url": "https://github.com/bookracy/epub-converter/issues"
},
"homepage": "https://github.com/bookracy/epub-converter#readme"
}