-
Notifications
You must be signed in to change notification settings - Fork 321
/
package.json
119 lines (113 loc) · 2.83 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name" : "work_crawler",
"title" : "CeJS online novels and comics downloader",
"version" : "v2.14.0",
"description" : "A tool using CeJS library to download online novels / comics.",
"keywords" : [ "comic-downloader", "novel-downloader", "cejs",
"downloader", "download-comic", "epub", "ebook", "comics",
"webcomics", "manga-downloader", "manga", "narou", "novels",
"crawler" ],
"author" : {
"name" : "Colorless echo",
"email" : "[email protected]",
"url" : "https://github.com/kanasimi/work_crawler"
},
"contributors" : [ "vimunci" ],
"license" : "BSD-3-Clause",
"homepage" : "https://github.com/kanasimi/work_crawler",
"bugs" : {
"url" : "https://github.com/kanasimi/work_crawler/issues"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/kanasimi/work_crawler.git"
},
"main" : "gui_electron/gui_electron.js",
"scripts" : {
"start" : "node_modules/.bin/electron .",
"pack" : "node_modules/.bin/electron-builder --dir",
"dist" : "node_modules/.bin/electron-builder",
"postinstall" : "node_modules/.bin/electron-builder install-app-deps"
},
"build" : {
"productName" : "work_crawler",
"appId" : "org.kanasimi.work_crawler",
"directories" : {
"output" : "build"
},
"publish" : [ {
"provider" : "github",
"owner" : "kanasimi",
"repo" : "work_crawler"
} ],
"files" : [ "package.json", "node_modules/*", "resources/*",
"_CeL.loader.nodejs.js", "gui_electron/**/*",
"work_crawler_loader.js",
"work_crawler.default_configuration.js", "comic.*/**/*",
"novel.*/**/*" ],
"mac" : {
"category" : "Network",
"target" : [ "dmg", "pkg", "zip" ],
"icon" : "gui_electron/icon/rasen2.png"
},
"dmg" : {
"icon" : "gui_electron/icon/rasen2.png",
"contents" : [ {
"x" : 110,
"y" : 150
}, {
"x" : 240,
"y" : 150,
"type" : "link",
"path" : "/Applications"
} ]
},
"mas" : {
"icon" : "gui_electron/icon/rasen2.png",
"extendInfo" : {
"ElectronTeamID" : "TEAMID"
},
"category" : "public.app-category.entertainment"
},
"linux" : {
"target" : [ {
"target" : "AppImage",
"arch" : [ "x64" ]
}, {
"target" : "deb",
"arch" : [ "x64" ]
}, {
"target" : "apk"
} ],
"category" : "Network",
"icon" : "gui_electron/icon/rasen2.png"
},
"win" : {
"target" : [ {
"target" : "nsis",
"arch" : [ "x64", "ia32" ]
} ],
"icon" : "gui_electron/icon/rasen2.ico"
},
"nsis" : {
"oneClick" : false,
"perMachine" : false,
"allowElevation" : true,
"allowToChangeInstallationDirectory" : true,
"createDesktopShortcut" : true,
"runAfterFinish" : true
}
},
"engines" : {
"node" : ">=8.12.0"
},
"devDependencies" : {
"electron" : "latest",
"electron-builder" : "latest"
},
"dependencies" : {
"electron-updater" : "latest",
"gh-updater" : "latest",
"cejs" : "latest"
}
}