forked from intity/epubreader-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "@mikespub/epubjs-reader",
"version": "2025.01.02",
"repository": "https://github.com/mikespub-org/intity-epubjs-reader",
"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": "mikespub",
"license": "MIT",
"contributors": [
{
"name": "vite",
"email": "nuget@list.ru"
}
],
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-concat-files-plugin": "^0.5.2",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"epubjs": "^0.3.93",
"js-md5": "^0.8.3"
}
}