-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"name": "linux-idm",
"version": "1.0.0",
"description": "Internet Download Manager for Linux",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"dev": "electron . --dev",
"build": "electron-builder",
"build:linux": "electron-builder --linux"
},
"keywords": [
"download",
"manager",
"linux",
"idm"
],
"author": "XYBERCLAN",
"license": "MIT",
"dependencies": {
"axios": "^1.6.2",
"electron-store": "^8.1.0",
"@distube/ytdl-core": "latest",
"express": "^4.18.2",
"ws": "^8.14.2",
"cors": "^2.8.5",
"open": "^8.4.2"
},
"devDependencies": {
"electron": "^28.0.0",
"electron-builder": "^24.9.1"
},
"build": {
"appId": "com.xyberclan.idm",
"productName": "Linux IDM",
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "Network",
"executableName": "linux-idm",
"maintainer": "XYBERCLAN <psychomarlon6@gmail.com>",
"icon": "assets/icon.png",
"desktop": {
"Name": "Linux IDM",
"GenericName": "Download Manager",
"Keywords": "download;manager;idm;internet;"
}
},
"deb": {
"priority": "optional",
"packageCategory": "network"
}
}
}