-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 1.78 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
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": "mu-epub-viewer",
"version": "1.0.6",
"repository": "https://github.com/futurepress/epubjs-reader",
"description": "ePub.js Reader",
"main": "index.js",
"bin": {
"mu-pdf-viewer": "./bin/cmd.js"
},
"build": {
"productName": "mu-epub-viewer",
"appId": "info.efcl.mu-epub-viewer",
"asar": true,
"npmRebuild": false,
"files": [
"index.js",
"reader/**/*",
"bin/**/*",
"node_modules/**/*"
],
"fileAssociations": {
"ext": "epub",
"name": "mu-epub-reader",
"role": "Viewer",
"mimeType": "application/xhtml+xml"
},
"publish": [
{
"provider": "github",
"releaseType": "release"
}
]
},
"scripts": {
"server": "node tools/serve",
"build": "grunt",
"start": "electron .",
"deploy": "gh-pages -d reader",
"electron": "electron index.js",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"author": "[email protected]",
"license": "BSD-2-Clause",
"devDependencies": {
"colors": "~1.3.3",
"connect": "~3.7.0",
"electron": "^16.0.4",
"electron-builder": "22.14.5",
"express": "^4.16.3",
"gh-pages": "^2.1.1",
"grunt": "~1.0.2",
"grunt-concat-sourcemap": "~0.4.1",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-connect": "~1.0.2",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-jshint": "~1.1.0",
"grunt-contrib-uglify": "~3.3.0",
"grunt-contrib-watch": "^1.1.0",
"optimist": "~0.6.1",
"portfinder": "~1.0.13",
"rimraf": "^3.0.2"
},
"dependencies": {
"electron-default-menu": "^1.0.2",
"electron-window-state": "^5.0.3",
"epubjs": "^0.3.88",
"jquery": "^3.5.1",
"jszip": "^3.5.0",
"localforage": "^1.9.0",
"minimist": "^1.2.5"
}
}