-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 981 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 981 Bytes
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
{
"name": "git2epub",
"version": "0.1.0",
"description": "Convert GitHub-hosted markdown books to EPUB/PDF",
"type": "module",
"bin": {
"git2epub": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"start": "node dist/cli.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^14.0.3",
"epub-gen-memory": "^1.1.2",
"js-yaml": "^4.1.1",
"node-fetch": "^3.3.2",
"rehype-highlight": "^7.0.2",
"rehype-stringify": "^10.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sharp": "^0.34.5",
"tar": "^7.5.13",
"unified": "^11.0.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.0",
"@types/tar": "^6.1.13",
"eslint": "^10.1.0",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
}
}