This repository has been archived by the owner on Jan 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (119 loc) · 3.22 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
{
"name": "youtube-dl-gui",
"version": "1.0.6",
"license": "gplv3",
"private": true,
"main": "public/electron.js",
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/node": "^15.0.1",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"electron-is-dev": "^2.0.0",
"electron-updater": "^4.3.8",
"ffmpeg-static": "^4.3.0",
"fluent-ffmpeg": "^2.1.2",
"lodash": "^4.17.21",
"node-pty": "^0.10.1",
"notistack": "^1.0.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"recoil": "^0.2.0",
"sanitize-filename": "^1.6.3",
"styled-components": "^5.2.3",
"typescript": "^4.2.4",
"utf-8-validate": "^5.0.4",
"web-vitals": "^1.0.1",
"ytdl-core": "^4.5.0",
"ytpl": "^2.2.0",
"ytsr": "^3.5.0"
},
"scripts": {
"react:start": "react-scripts start",
"react:build": "react-scripts build",
"eject": "react-scripts eject",
"start": "tsc ./public/electron.ts && concurrently \"cross-env BROWSER=none npm run react:start\" \"wait-on http://localhost:3000 && electron .\"",
"build": "tsc ./public/electron.ts && npm run react:build && electron-builder",
"release": "npm run react-build && electron-builder --publish=always",
"electron:build": "npm-run-all build:win build:mac build:linux",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"app:publish": "tsc ./public/electron.ts && npm run react:build && electron-builder --win --mac --linux --publish always"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/electron": "^1.6.10",
"concurrently": "^6.0.2",
"cross-env": "^7.0.3",
"electron": "^12.0.6",
"electron-builder": "^22.10.5",
"electronmon": "^2.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"wait-on": "^5.3.0"
},
"build": {
"productName": "Youtube-DL",
"appId": "com.github.pikokr.ytdl_gui",
"win": {
"target": [
"zip",
"nsis"
],
"icon": "./resources/installer/icon.ico"
},
"asar": false,
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"installerIcon": "./resources/installer/icon.ico"
},
"directories": {
"buildResources": "./resources/installer/",
"output": "./app/",
"app": "."
},
"mac": {
"target": [
"dmg"
],
"icon": "./resources/installer/icon.png"
},
"linux": {
"target": [
"appimage"
],
"category": "Utility"
},
"dmg": {
"backgroundColor": "#ff0000",
"icon": "./resources/installer/icon.png"
}
},
"homepage": "./"
}