Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aandrew-me
GitHub Repository: aandrew-me/ytDownloader
Path: blob/main/package.json
448 views
1
{
2
"dependencies": {
3
"electron-updater": "^6.6.2",
4
"systeminformation": "^5.25.11",
5
"yt-dlp-wrap-plus": "^2.4.3"
6
},
7
"name": "ytdownloader",
8
"version": "3.20.2",
9
"main": "main.js",
10
"scripts": {
11
"start": "electron .",
12
"dist": "electron-builder",
13
"debug": "electron --inspect=5858 .",
14
"windows": "electron-builder -w",
15
"linux": "electron-builder -l",
16
"mac": "electron-builder -m",
17
"gh-windows": "electron-builder -w --publish=always",
18
"gh-linux": "electron-builder -l --publish=always",
19
"gh-mac": "electron-builder -m --publish=always"
20
},
21
"author": {
22
"name": "Andrew",
23
"email": "[email protected]"
24
},
25
"publish": {
26
"provider": "github",
27
"owner": "aandrew-me",
28
"repo": "ytDownloader",
29
"private": false
30
},
31
"license": "GPL-3.0",
32
"description": "Download videos and audios from YouTube and many other sites",
33
"devDependencies": {
34
"electron": "^30.0.0",
35
"electron-builder": "^26.0.12",
36
"typescript": "^5.3.3"
37
},
38
"build": {
39
"productName": "YTDownloader",
40
"appId": "io.github.aandrew_me.ytdn",
41
"artifactName": "${productName}.${ext}",
42
"files": [
43
"./resources/**/*",
44
"main.js",
45
"./html/**/*",
46
"./resources/**/*",
47
"./public/**/*",
48
"package.json",
49
"./assets/**/*",
50
"./src/*.js",
51
"./ffmpeg/**/*",
52
"!ffmpeg.patch",
53
"translations",
54
"node*"
55
],
56
"electronLanguages": [
57
"en-US"
58
],
59
"mac": {
60
"category": "Utility",
61
"target": [
62
"zip",
63
"dmg"
64
],
65
"artifactName": "${productName}_Mac_${arch}.${ext}"
66
},
67
"dmg": {
68
"contents": [
69
{
70
"x": 130,
71
"y": 220
72
},
73
{
74
"x": 410,
75
"y": 220,
76
"type": "link",
77
"path": "/Applications"
78
}
79
],
80
"sign": false
81
},
82
"asar": false,
83
"directories": {
84
"buildResources": "resources",
85
"output": "release"
86
},
87
"linux": {
88
"target": [
89
"Appimage",
90
"snap",
91
"rpm",
92
"zip",
93
"deb"
94
],
95
"category": "Utility",
96
"artifactName": "${productName}_Linux.${ext}"
97
},
98
"snap": {
99
"grade": "stable",
100
"base": "core22"
101
},
102
"win": {
103
"target": [
104
"nsis",
105
"msi",
106
"zip"
107
],
108
"artifactName": "${productName}_Win.${ext}"
109
},
110
"nsis": {
111
"allowToChangeInstallationDirectory": true,
112
"oneClick": false,
113
"deleteAppDataOnUninstall": true
114
},
115
"msi": {
116
"oneClick": true,
117
"createDesktopShortcut": true,
118
"createStartMenuShortcut": true,
119
"shortcutName": "YTDownloader"
120
}
121
}
122
}
123
124