-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.33 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.33 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
{
"name": "yaprax-downloader",
"version": "1.0.0",
"description": "Yaprax Downloader - A modern wget-based download manager",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "electron-builder",
"build:linux": "electron-builder --linux",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac"
},
"keywords": [
"wget",
"downloader",
"gui",
"electron",
"yaprax"
],
"author": {
"name": "Aga Ismael Abdalla",
"email": "agaesmaeel@gmail.com",
"github": "https://github.com/petrichor-494",
"url": "https://linux.krd"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/petrichor-494/yaprax-downloader"
},
"devDependencies": {
"@types/react": "^19.2.2",
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "krd.linux.yaprax",
"productName": "YapraxDownloader",
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Network"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"mac": {
"target": [
"dmg",
"zip"
],
"category": "public.app-category.utilities"
},
"files": [
"main.js",
"preload.js",
"index.html"
]
}
}