-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdub.json
35 lines (35 loc) · 887 Bytes
/
dub.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
{
"authors": [
"Faissal Isslam Bensefia"
],
"copyright": "Copyright © 2019, Faissal Isslam Bensefia",
"description": "automatically cut out a downloaded YouTube video's sponsors",
"license": "GPLv3",
"name": "sponskrub",
"configurations": [
{
"name": "all",
"targetType": "none",
"dependencies": {
"sponskrub:sponskrub": "*",
"sponskrub:youtube-dl-sponsorblock": "*"
}
}
],
"subPackages": [
{
"name": "sponskrub",
"targetType": "executable",
"mainSourceFile": "src/sponskrub/sponskrub.d",
"excludedSourceFiles": [ "src/youtube_dl_sponsorblock/*"],
"targetName": "./sponskrub"
},
{
"name": "youtube-dl-sponsorblock",
"targetType": "executable",
"mainSourceFile": "src/youtube_dl_sponsorblock/youtube_dl_sponsorblock.d",
"excludedSourceFiles": [ "src/sponskrub/*"],
"targetName": "./youtube-dl-sponsorblock"
}
]
}