-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.97 KB
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
{
"name": "downstika",
"version": "1.0.0",
"description": "Download Domestika courses you own",
"author": "ArcticNavigator <cypher.jscript@gmail.com> (https://github.com/ArcticNavigator)",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/ArcticNavigator/Domestika-Course-Downloader#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ArcticNavigator/Domestika-Course-Downloader.git"
},
"bugs": {
"url": "https://github.com/ArcticNavigator/Domestika-Course-Downloader/issues"
},
"main": "main.js",
"scripts": {
"start": "electron .",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"puppeteer": "^24.15.0"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "com.downstika.app",
"productName": "Downstika",
"asar": true,
"compression": "maximum",
"publish": [
{
"provider": "github",
"releaseType": "draft"
}
],
"files": [
"main.js",
"preload.js",
"downloader.js",
"renderer/**/*"
],
"win": {
"target": "nsis",
"icon": "build/icon.png",
"extraResources": [
{ "from": "win", "to": "win" }
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"license": "INSTALLER_TERMS.txt"
},
"mac": {
"target": "dmg",
"icon": "build/icon.png",
"extraResources": [
{ "from": "mac-x64", "to": "mac-x64" },
{ "from": "mac-arm64", "to": "mac-arm64" }
]
},
"linux": {
"target": ["AppImage", "deb"],
"icon": "build/icon.png",
"category": "Utility",
"maintainer": "ArcticNavigator <cypher.jscript@gmail.com>",
"extraResources": [
{ "from": "linux", "to": "linux" }
]
}
}
}