-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
137 lines (137 loc) · 4.38 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "video-downloader",
"version": "1.0.16",
"description": "A minimal Electron application to download videos, eg from YouTube",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"pack:mac": "build --dir --mac --x64",
"pack:linux": "build --dir --linux --x64",
"pack:win": "build --dir --win --x64",
"build": "electron-builder build",
"build:mac": "electron-builder build --mac --x64 --arm64",
"build:mac:arm64": "electron-builder build --mac --arm64",
"build:mac_app_store": "echo 'Mac App Store Option Not currently implemented'",
"build:win": "build --win nsis-web --x64",
"build:linux": "build --linux --x64",
"build:mwl": "electron-builder -mwl",
"build:ml:publish:always": "electron-builder -ml --publish always",
"build:mwl:publish:always": "electron-builder -mwl --publish always",
"build:l:publish:always": "electron-builder -l --publish always",
"build:m:publish:always": "electron-builder -m --x64 --arm64 --publish always",
"build:w:publish:always": "electron-builder -w --x64 --ia32 --publish always"
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"video",
"github",
"youtube",
"downloader",
"os x"
],
"build": {
"publish": {
"provider": "github",
"releaseType": "prerelease",
"vPrefixedTagName": false,
"owner": "pietrop",
"repo": "electron-video-downloader"
},
"appId": "org.video.downloader",
"asar": false,
"directories": {
"buildResources": "build"
},
"files": [
"**/*",
"build/**",
"!config/",
"!assets/",
"!spec/",
"!project_page/",
"!vendor/",
"!docs/",
"!dist/",
"!icons/",
"node_modules/**/*"
],
"copyright": "2017 Pietro Passarelli",
"mac": {
"category": "public.app-category.productivity",
"files": [],
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
},
"linux": {
"category": "",
"packageCategory": "GNOME;GTK;VideoEditing;PaperEditing;Transcriptions",
"description": "video download Desktop Client for Linux",
"target": [
"AppImage"
],
"maintainer": "Pietro Passarelli <[email protected]>"
},
"deb": {
"synopsis": "Video downloader"
},
"dmg": {
"background": "build/background.png",
"icon": "build/download-video.icns",
"iconSize": 128,
"contents": [
{
"x": 448,
"y": 340,
"type": "link",
"path": "/Applications"
},
{
"x": 192,
"y": 340,
"type": "file"
}
]
},
"win": {
"artifactName": "${productName}-${version}-${arch}.${ext}",
"target": [
{
"target": "portable",
"arch": [
"x64",
"arm64",
"ia32"
]
}
],
"icon": "build/download-video.png",
"files": [
"node_modules/ffmpeg-static/bin/win/${arch}/ffmpeg",
"!node_modules/ffmpeg-static/bin/win/ia32${/*}",
"!node_modules/ffmpeg-static/bin/linux${/*}",
"!node_modules/ffmpeg-static/bin/mac${/*}"
]
}
},
"author": "Pietro Passarelli <[email protected]> (http://pietropassarelli.com)",
"license": "MIT",
"devDependencies": {
"electron": "^13.1.7",
"electron-builder": "^22.11.7"
},
"dependencies": {
"iso-639-1": "^2.0.3",
"node-webvtt-youtube": "^1.0.0",
"path": "^0.12.7",
"youtube-dl": "^3.1.0"
}
}