-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.73 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.73 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
73
{
"name": "jepub",
"version": "2.5.0",
"description": "Generate simple EPUB books with JavaScript.",
"main": "dist/jepub.js",
"module": "dist/jepub.es.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"clean": "rimraf dist",
"build": "vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"format:lint": "npm run format && npm run lint:fix",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lelinhtinh/jEpub.git"
},
"keywords": [
"generator",
"epub",
"javascript",
"typescript",
"browser",
"library",
"ebook",
"publishing"
],
"author": "lelinhtinh",
"license": "ISC",
"files": [
"dist/",
"index.d.ts",
"README.md"
],
"bugs": {
"url": "https://github.com/lelinhtinh/jEpub/issues"
},
"homepage": "https://lelinhtinh.github.io/jEpub/",
"dependencies": {
"@xmldom/xmldom": "^0.8.11"
},
"peerDependencies": {
"jszip": "^3.10.1"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@vitest/coverage-v8": "^3.2.3",
"@vitest/ui": "^3.2.3",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"happy-dom": "^20.0.0",
"jszip": "^3.10.1",
"lodash": "^4.18.1",
"minify-xml": "^4.5.2",
"prettier": "^3.5.3",
"rimraf": "^6.0.0",
"terser": "^5.42.0",
"vite": "^6.3.5",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-node-polyfills": "^0.23.0",
"vitest": "^3.2.3"
}
}