forked from julien-c/epub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 981 Bytes
/
package.json
File metadata and controls
44 lines (44 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
43
44
{
"name": "@jcsj/epub",
"private": false,
"version": "2.0.41",
"description": "An Epub parser for the web.",
"main": "./lib/index.ts",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"keywords": [
"books",
"ebook",
"epub",
"epub-parser",
"parser"
],
"author": "Jean Carlo M. San Juan",
"files": [
"lib/*"
],
"dependencies": {
"@jcsj/arraymap": "^0.0.4",
"@jcsj/emit": "^0.1.1",
"@jcsj/xml-js": "2.0.0-beta.2",
"@zip.js/zip.js": "^2.7.32"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.11",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"license": "ISC"
}