forked from FaisalUmair/udemy-downloader-gui
-
-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
83 lines (83 loc) · 2.47 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
{
"name": "udeler",
"productName": "Udeler",
"version": "1.13.3",
"description": "A cross platform (Windows, Mac, Linux) desktop application for downloading Udemy Courses.",
"main": "main.js",
"type": "commonjs",
"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": "[email protected]",
"url": "https://github.com/FaisalUmair"
},
"scripts": {
"dev": "electron . --developer",
"start": "electron .",
"format": "prettier --write \"app/**/*.js\"",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder",
"build:w32": "electron-builder -w \"--ia32\"",
"deploy": "node ./node_modules/gh_deploy/index.js",
"build:local": "npm run build && npm run build:w32",
"sync:locales": "node ./sync-locales.js"
},
"dependencies": {
"@sentry/electron": "^4.24.0",
"axios": "^1.7.7",
"cookie": "^1.0.1",
"dialogs": "^2.0.1",
"electron-settings": "3.2.0",
"jquery": "^3.7.1",
"mt-files-downloader": "github:FaisalUmair/mt-files-downloader-wrapper",
"node-cache": "^5.1.2",
"node-vtt-to-srt": "^1.0.1",
"sanitize-filename": "^1.6.3"
},
"devDependencies": {
"electron": "^11.5.0",
"electron-builder": "^25.1.8",
"electron-reload": "^2.0.0-alpha.1",
"gh_deploy": "github:heliomarpm/gh_deploy"
},
"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"
]
}
}
}