-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.4 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
{
"name": "@isalin/epubkit",
"version": "1.0.3",
"description": "TypeScript EPUB library and Node.js CLI for editing metadata, merging EPUB files, managing covers, and inspecting archives.",
"repository": {
"type": "git",
"url": "git+https://github.com/isalin/epubkit.git"
},
"homepage": "https://github.com/isalin/epubkit#readme",
"bugs": {
"url": "https://github.com/isalin/epubkit/issues"
},
"type": "module",
"bin": {
"epub": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tsc -p tsconfig.json --noEmit",
"test": "npm run build && node --test test/*.test.js"
},
"keywords": [
"epub",
"epub2",
"epub3",
"ebook",
"ebooks",
"opf",
"metadata",
"ebook-metadata",
"epub-metadata",
"epub-editor",
"epub-cli",
"epub-parser",
"epub-merge",
"epub-cover",
"opf-parser",
"ebook-tools",
"node",
"nodejs",
"node-cli",
"cli",
"javascript",
"typescript",
"typescript-library"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.10",
"fflate": "^0.8.2"
},
"devDependencies": {
"@types/node": "^24.0.0",
"typescript": "^5.8.0"
}
}