-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
113 lines (113 loc) · 2.76 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
{
"name": "fastdownloader",
"version": "0.5.23",
"description": "A fast YouTube video/audio downloader in electron.js (and many more websites)",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder build --win --linux --publish never",
"build_win": "electron-builder build --win --publish never",
"build_unix": "electron-builder build --linux --publish never",
"deploy": "electron-builder build --win --linux --publish always",
"deploy_win": "electron-builder build --win --publish always",
"deploy_unix": "electron-builder build --linux --publish always"
},
"repository": {
"type": "git",
"url": "https://github.com/BERNARDO31P/fastDownloader.git"
},
"keywords": [
"downloader",
"youtube",
"fast",
"audio",
"video"
],
"author": "Bernardo de Oliveira <[email protected]>",
"license": "GPL-3.0",
"devDependencies": {
"@electron/asar": "3.2.17",
"electron": "33.2.1",
"electron-builder": "25.1.8"
},
"dependencies": {
"auto-launch": "5.0.6",
"electron-updater": "6.3.9",
"fastest-levenshtein": "1.0.16",
"node-youtube-music": "0.8.3",
"terminate": "2.8.0",
"youtube-sr": "4.3.11",
"ytpl": "2.3.0"
},
"build": {
"appId": "fm.bernardo.fastDownloader",
"productName": "FastDownloader",
"directories": {
"buildResources": "resources"
},
"win": {
"artifactName": "${productName}-Setup-${version}-${arch}.${ext}",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"extraResources": [
{
"from": "resources/ffmpeg.exe",
"to": "ffmpeg.exe"
},
{
"from": "resources/yt-dlp.exe",
"to": "yt-dlp.exe"
},
{
"from": "resources/icons/256x256.png",
"to": "icons/256x256.png"
},
{
"from": "resources/icons/64x64.png",
"to": "icons/64x64.png"
}
]
},
"nsis": {
"allowElevation": false,
"allowToChangeInstallationDirectory": true,
"oneClick": false,
"perMachine": true
},
"linux": {
"category": "Utility",
"target": [
"deb",
"AppImage",
"rpm",
"tar.gz",
"pacman"
],
"extraResources": [
{
"from": "resources/ffmpeg_linux",
"to": "ffmpeg_linux"
},
{
"from": "resources/yt-dlp_linux",
"to": "yt-dlp_linux"
},
{
"from": "resources/icons/256x256.png",
"to": "icons/256x256.png"
},
{
"from": "resources/icons/64x64.png",
"to": "icons/64x64.png"
}
]
}
}
}