-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "mangadex-offline",
"version": "1.1.0",
"description": "electron app to download and read mangadex mangas offline",
"keywords": [
"electron",
"offline",
"manga",
"mangadex",
"download",
"read"
],
"main": "src/electronStarter.js",
"scripts": {
"start": "electron .",
"build-dev": "electron-builder -w -c.compression=store",
"clean-build": "rm -rf dist; electron-builder -w",
"ship": "git push && electron-builder -w -p always"
},
"author": "mahhov1",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/mahhov/mangadex-offline-js.git"
},
"bugs": {
"url": "https://github.com/mahhov/mangadex-offline-js/issues"
},
"homepage": "https://github.com/mahhov/mangadex-offline-js#readme",
"dependencies": {
"axios": "^0.21.1",
"env-paths": "^2.2.0",
"xx-element": "^3.1.0"
},
"devDependencies": {
"electron": "^11.2.1",
"electron-builder": "^22.9.1"
},
"build": {
"asar": false,
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",
"files": [
"resources",
"src"
],
"icon": "./resources/book-open-solid.png"
}
}