forked from heliomarpm/udemy-downloader-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.4 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
{
"name": "udeler",
"productName": "Udeler",
"version": "1.12.7",
"description": "A cross platform (Windows, Mac, Linux) desktop application for downloading Udemy Courses.",
"main": "main.js",
"vars": {
"urlHelp": "https://heliomarpm.notion.site/heliomarpm/How-to-get-an-Access-Token-b0ce5f89073c4965b47721197dcb2497",
"urlToggles": "https://raw.githubusercontent.com/heliomarpm/feature_toggles/main/udemy-downloader-gui.json",
"urlDonate": "https://www.paypal.com/donate?business=KBVHLR7Z9V7B2&no_recurring=0¤cy_code=USD"
},
"repository": {
"type": "git",
"url": "https://github.com/heliomarpm/udemy-downloader-gui.git"
},
"license": "ISC",
"author": {
"name": "Faisal Umair",
"email": "eff.umair@gmail.com",
"url": "https://github.com/FaisalUmair"
},
"scripts": {
"dev": "electron . --developer",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder",
"build:w32": "electron-builder -w \"--ia32\"",
"make:release": "node ./cmd/modules/release/index.js",
"prebuild:local": "node ./cmd/prebuild.js",
"build:local": "npm run build && npm run build:w32"
},
"dependencies": {
"@sentry/electron": "^4.14.0",
"axios": "^1.5.1",
"cookie": "^0.5.0",
"dialogs": "^2.0.1",
"electron-settings": "^3.2.0",
"jquery": "^3.7.1",
"mkdirp": "^1.0.4",
"mt-files-downloader": "github:FaisalUmair/mt-files-downloader-wrapper",
"node-vtt-to-srt": "^1.0.1",
"sanitize-filename": "^1.6.3"
},
"devDependencies": {
"electron": "11.5.0",
"electron-builder": "^24.6.3",
"electron-reload": "^2.0.0-alpha.1",
"open": "^9.1.0",
"semver": "^7.5.4"
},
"build": {
"appId": "com.faisalumair.udeler",
"productName": "Udeler",
"copyright": "Copyright © 2017 - 2023 | ${author}",
"artifactName": "${productName}_Setup-v${version}_${os}-${arch}.${ext}",
"portable": {
"artifactName": "${productName}_Portable-v${version}_${os}-${arch}.${ext}"
},
"directories": {
"buildResources": "app/assets/images/build",
"output": "dist"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"mac": {
"category": "public.app-category.utilities"
},
"linux": {
"category": "Utility",
"target": [
"AppImage",
"deb",
"freebsd",
"rpm"
]
}
}
}