-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 829 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 829 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
{
"name": "simple-reader",
"version": "1.0.0-alpha",
"description": "Simple image reader",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-packager . SimpleReader --platform=win32 --arch=x64 --overwrite --asar --prune=true --ignore=^/windows-manifest --icon=default.ico"
},
"keywords": [
"Electron",
"javascript",
"gallery",
"reader",
"manga",
"image"
],
"author": "https://github.com/tlam22",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^12.0.2",
"electron-packager": "^15.2.0"
},
"dependencies": {
"@electron/remote": "^1.1.0",
"is-image": "^3.0.0",
"jquery": "^3.6.0",
"jquery.waitforimages": "^2.4.0",
"paginationjs": "^2.1.5",
"select2": "^4.1.0-rc.0",
"v8-compile-cache": "^2.3.0"
}
}