-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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": "kookit",
"version": "1.0.4",
"description": "Ebook render for mobi, azw3, txt and more",
"homepage": "https://github.com/troyeguo/koodo-render",
"repository": {
"type": "git",
"url": "git+https://github.com/troyeguo/koodo-render.git"
},
"license": "AGPL-3.0-or-later",
"keywords": [
"typescript",
"npm",
"package",
"boilerplate"
],
"main": "dist/kookit.cjs.js",
"module": "dist/kookit.esm.js",
"browser": "dist/kookit.umd.js",
"minify": "dist/kookit.min.js",
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"prebuild:types": "rimraf ./build",
"build:types": "tsc -p ./tsconfig.json --outDir build --declaration true && api-extractor run",
"predocs": "rimraf ./docs",
"docs": "typedoc src --out docs",
"clean": "rimraf ./build ./dist ./docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@microsoft/api-extractor": "^7.18.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.2.5",
"@types/jszip": "^3.4.1",
"@types/node": "^16.11.2",
"@types/rangy": "^0.0.38",
"core-js": "^3.41.0",
"eslint": "^7.32.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"rollup-plugin-commonjs": "^10.1.0",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typedoc": "^0.21.9",
"typescript": "^4.4.2"
},
"dependencies": {
"7z-wasm": "^1.1.0",
"@zip.js/zip.js": "^2.8.2",
"chardet": "^2.0.0",
"fflate": "^0.8.2",
"js-untar": "^2.0.0",
"jszip": "^3.10.1",
"mammoth": "^1.8.0",
"marked": "^15.0.3",
"mhtml2html": "^3.0.0",
"rangy": "1.3.0"
},
"bugs": {
"url": "https://github.com/troyeguo/koodo-render/issues"
},
"directories": {
"doc": "docs"
}
}