forked from lesjoursfr/html-to-epub
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.86 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
70
71
72
73
74
75
76
77
{
"name": "@lesjoursfr/html-to-epub",
"version": "4.3.0",
"description": "A library to generate EPUB from HTML. Inspired by epub-gen.",
"license": "MIT",
"repository": "lesjoursfr/html-to-epub",
"homepage": "https://github.com/lesjoursfr/html-to-epub#readme",
"bugs": {
"url": "https://github.com/lesjoursfr/html-to-epub/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "20.x || 22.x"
},
"keywords": [
"epub",
"generator",
"ebook",
"html"
],
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*",
"src/**/*",
"templates/**/*"
],
"scripts": {
"freshlock": "rm -rf node_modules/ && rm .yarn/install-state.gz && rm yarn.lock && yarn",
"check-lint": "eslint",
"check-format": "prettier --check .",
"check-tsc": "tsc --noEmit",
"lint": "eslint --fix",
"format": "prettier --write .",
"build": "tsc",
"test": "cross-env NODE_OPTIONS='--loader=ts-node/esm' mocha"
},
"dependencies": {
"archiver": "^7.0.1",
"axios": "^1.7.2",
"diacritics": "^1.3.0",
"ejs": "^3.1.10",
"entities": "^5.0.0",
"fs-extra": "^11.2.0",
"image-size": "^1.1.1",
"mime": "^4.0.3",
"rehype-parse": "^9.0.0",
"rehype-stringify": "^10.0.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"uslug": "^1.0.4"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@tsconfig/node20": "^20.1.4",
"@types/archiver": "^6.0.2",
"@types/diacritics": "^1.3.3",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.9",
"@types/uslug": "^1.0.4",
"cross-env": "^7.0.3",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.7.0",
"mocha": "^10.5.2",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.2",
"typescript-eslint": "^8.0.0-alpha.38"
},
"packageManager": "[email protected]"
}