-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "webtoon-downloader",
"version": "0.0.2",
"description": "Webtoon Downloader",
"main": "index.js",
"scripts": {
"dist": "electron-builder",
"run": "electron index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Seo-Rii/Webtoon_Downloader_UI.git"
},
"author": "SeoRii <studioSeoRii@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Seo-Rii/Webtoon_Downloader_UI/issues"
},
"build": {
"productName": "Webtoon Downloader",
"appId": "youtil.webtoon.downloader",
"directories": {
"output": "build"
},
"win": {
"extraFiles": [
"./downloader.exe"
],
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"icon": "./logo.ico"
},
"portable": {
"artifactName": "Webtoon_Downloader.exe",
"useZip": true,
"splashImage": "./splash.bmp"
}
},
"homepage": "https://github.com/Seo-Rii/Webtoon_Downloader_UI#readme",
"dependencies": {
"request": "^2.88.2",
"electron-settings": "^4.0.2",
"cheerio": "^1.0.0-rc.10"
},
"devDependencies": {
"electron": "^13.1.7",
"electron-builder": "^22.11.7"
}
}