-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 2.89 KB
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
{
"name": "microdownloader",
"productName": "Microdownloader",
"version": "0.1.0",
"description": "A minimal, open-source GUI for yt-dlp. macOS first.",
"main": "main.js",
"author": {
"name": "Edgar Perez",
"email": "codedgar.dev@gmail.com",
"url": "https://github.com/codedgar"
},
"license": "MIT",
"homepage": "https://github.com/codedgar/microdownloader",
"repository": {
"type": "git",
"url": "git+https://github.com/codedgar/microdownloader.git"
},
"bugs": {
"url": "https://github.com/codedgar/microdownloader/issues"
},
"keywords": [
"yt-dlp",
"youtube-dl",
"video-downloader",
"youtube",
"downloader",
"macos",
"electron"
],
"scripts": {
"fetch-binaries": "bash scripts/fetch-binaries.sh",
"fetch-binaries:arm64": "FFMPEG_ARCH=arm64 bash scripts/fetch-binaries.sh",
"fetch-binaries:x64": "FFMPEG_ARCH=x86_64 bash scripts/fetch-binaries.sh",
"postinstall": "bash scripts/fetch-binaries.sh || echo 'Skipped fetch-binaries (run npm run fetch-binaries manually).'",
"start": "electron .",
"build:arm64": "npm run fetch-binaries:arm64 && electron-builder --mac --arm64",
"build:x64": "npm run fetch-binaries:x64 && electron-builder --mac --x64",
"build": "npm run build:arm64 && npm run build:x64"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^26.8.1"
},
"build": {
"appId": "com.codedgar.microdownloader",
"productName": "Microdownloader",
"files": [
"main.js",
"preload.js",
"renderer.js",
"index.html",
"style.css",
"package.json",
"assets/**/*",
"!assets/readme-*"
],
"asarUnpack": [
"**/*.node",
"node_modules/electron-liquid-glass/**/*"
],
"extraResources": [
{
"from": "resources/bin",
"to": "resources/bin",
"filter": [
"**/*",
"!__MACOSX",
"!__MACOSX/**",
"!._*",
"!.DS_Store"
]
}
],
"mac": {
"category": "public.app-category.utilities",
"target": [
{
"target": "dmg",
"arch": [
"arm64",
"x64"
]
}
],
"identity": "Edgar Ramon Perez Godoy (H6JGGP62Q9)",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist",
"notarize": true,
"binaries": [
"resources/bin/yt-dlp",
"resources/bin/ffmpeg"
]
},
"dmg": {
"title": "Microdownloader ${version}",
"contents": [
{
"x": 130,
"y": 220,
"type": "file"
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
}
},
"dependencies": {
"electron-liquid-glass": "^1.1.1"
}
}