-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.67 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
{
"name": "youtube-downloader",
"productName": "YouTube Downloader",
"version": "1.3.2",
"description": "A standalone Youtube downloader",
"main": "index.js",
"repository": "https://github.com/Joery-M/YouTube-Downloader",
"scripts": {
"start": "env YTDL_NO_UPDATE=1 electron-forge start",
"make": "webpack --mode=production && electron-builder -mwl",
"watch": "webpack --watch --mode=development --devtool=inline-source-map",
"buildWeb": "webpack --mode=production",
"buildApp": "webpack --mode=production && electron-builder",
"makeMac": "webpack --mode=production && electron-builder --mac",
"makeWin": "webpack --mode=production && electron-builder --win",
"release": "webpack --mode=production && electron-builder"
},
"keywords": [],
"author": "Joery",
"license": "ISC",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@ffprobe-installer/ffprobe": "^2.0.0",
"@material/button": "^14.0.0",
"@material/checkbox": "^14.0.0",
"@material/circular-progress": "^14.0.0",
"@material/dialog": "^14.0.0",
"@material/form-field": "^14.0.0",
"@material/linear-progress": "^14.0.0",
"@material/ripple": "^14.0.0",
"@material/select": "^14.0.0",
"@material/slider": "^14.0.0",
"@material/tab-bar": "^14.0.0",
"@material/textfield": "^14.0.0",
"@material/top-app-bar": "^14.0.0",
"clipboard-event": "^1.6.0",
"electron-progressbar": "^2.0.1",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^5.3.0",
"fluent-ffmpeg": "^2.1.2",
"systeminformation": "^5.17.9",
"yt-dlp-wrap": "^2.3.11",
"ytdl-core": "^4.11.2"
},
"build": {
"appId": "Youtube.Downloader",
"asarUnpack": [
"node_modules/ffmpeg-static-electron",
"node_modules/ffprobe-static-electron",
"node_modules/ffmpeg-static"
],
"win": {
"publish": [
"github"
]
},
"nsis": {
"oneClick": true,
"installerIcon": "./icon.ico",
"uninstallerIcon": "./icon.ico"
},
"mac": {
"category": "public.app-category.utilities",
"icon": "./icon.icns",
"target": "pkg",
"darkModeSupport": true
}
},
"config": {
"forge": {}
},
"devDependencies": {
"@electron-forge/cli": "^6.0.5",
"@types/fluent-ffmpeg": "^2.1.20",
"css-loader": "^6.7.3",
"electron": "^23.1.1",
"electron-builder": "^23.6.0",
"electron-rebuild": "^3.2.9",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.0",
"sass": "^1.58.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}