forked from futurepress/epubjs-reader
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "epubreader-js",
"version": "0.3.3",
"homepage": "https://github.com/intity/epubreader-js",
"repository": {
"type": "git",
"url": "https://github.com/intity/epubreader-js.git"
},
"directories": {
"dist": "dist",
"docs": "docs"
},
"description": "epub reader",
"bugs": {
"url": "https://github.com/intity/epubreader-js/issues"
},
"main": "src/reader.js",
"type": "module",
"scripts": {
"build": "webpack --mode=production --progress",
"serve": "webpack serve",
"minify": "webpack --mode=production --optimization-minimize --progress",
"prepare": "npm run build && npm run minify"
},
"author": "[email protected]",
"license": "MIT",
"contributors": [
{
"name": "vite",
"email": "[email protected]"
}
],
"devDependencies": {
"copy-webpack-plugin": "^8.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^4.10.0",
"webpack-concat-files-plugin": "^0.5.2",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"epubjs": "^0.3.93",
"js-md5": "^0.7.3"
}
}