-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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
{
"name": "youtube-downloader",
"productName": "YouTube Downloader",
"version": "1.1.1",
"description": "A standalone Youtube downloader",
"main": "index.js",
"repository": "https://github.com/Joery-M/YouTube-Downloader",
"scripts": {
"start": "electron-forge start",
"make": "webpack --mode=production && electron-builder -mwl",
"watch": "webpack --watch --mode=development",
"buildApp": "webpack --mode=production",
"makeMac": "webpack --mode=production && electron-builder --mac",
"makeWin": "webpack --mode=production && electron-builder --win",
"release": "electron-builder"
},
"keywords": [],
"author": "Joery",
"license": "ISC",
"dependencies": {
"@material/circular-progress": "^14.0.0",
"@material/dialog": "^14.0.0",
"@material/linear-progress": "^14.0.0",
"@material/ripple": "^14.0.0",
"@material/select": "^14.0.0",
"@material/textfield": "^14.0.0",
"electron-progressbar": "^2.0.1",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^5.0.5",
"ffmpeg-static-electron": "^2.0.3",
"fluent-ffmpeg": "^2.1.2",
"node-fetch": "^2.6.7",
"ytdl-core": "^4.11.0"
},
"build": {
"appId": "Youtube.Downloader",
"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.0-beta.65",
"@types/fluent-ffmpeg": "^2.1.20",
"css-loader": "^6.7.1",
"electron": "^19.0.8",
"electron-builder": "^23.1.0",
"html-loader": "^4.1.0",
"html-webpack-plugin": "^5.5.0",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}