-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
130 lines (130 loc) · 3.08 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "mediaharbor",
"version": "1.0.9",
"main": "src/main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "electron-builder",
"build:win": "electron-builder --win",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux"
},
"keywords": [],
"author": "CrossyAtom46",
"license": "GPL-3.0-or-later",
"description": "MediaHarbor",
"homepage": "https://mediaharbor.github.io",
"build": {
"protocols": [
{
"name": "MediaHarbor Protocol",
"schemes": ["mediaharbor"]
}
],
"appId": "AtomDev.MediaHarbor",
"productName": "MediaHarbor",
"asarUnpack": [
"src/funcs/apis/**/*.py",
"src/*.py",
"src/funcs/apis/apis.json"
],
"files": [
"src/**/*",
"package.json"
],
"directories": {
"buildResources": "resources",
"output": "dist"
},
"win": {
"target": [
"nsis",
"portable",
"appx"
],
"icon": "resources/icon.png"
},
"appx": {
"applicationId": "AtomDev.MediaHarbor",
"backgroundColor": "#464646",
"identityName": "AtomDev.MediaHarbor",
"publisher": "CN=B799C26F-32FE-4398-8D3A-A8667FA3C70A",
"publisherDisplayName": "AtomDev",
"languages": [
"en-US"
],
"displayName": "MediaHarbor",
"showNameOnTiles": false,
"artifactName": "MediaHarbor-${version}-${arch}.${ext}"
},
"mac": {
"target": [
"dmg"
],
"icon": "resources/icon.png"
},
"linux": {
"target": [
"AppImage",
"deb",
"snap"
],
"maintainer": "AtomDev",
"icon": "resources/icons/",
"category": "Utility",
"executableName": "mediaharbor",
"artifactName": "${productName}-${version}.${ext}",
"desktop": {
"Name": "MediaHarbor",
"Comment": "MediaHarbor Application",
"Categories": "Utility;",
"Type": "Application"
},
"publish": [
"github"
]
},
"deb": {
"afterInstall": "resources/postinst.sh"
},
"snap": {
"grade": "stable",
"confinement": "strict",
"plugs": [
"network",
"home",
"process-control"
],
"environment": {
"ELECTRON_ENABLE_LOGGING": "true",
"APPARMOR_PROFILE": "/usr/share/apparmor/profiles/mediaharbor"
}
}
},
"devDependencies": {
"@unocss/preset-icons": "^0.63.4",
"electron": "^33.2.0",
"electron-builder": "^25.1.8"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"axios": "^1.7.7",
"cheerio": "^1.0.0",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"electron-store": "^10.0.0",
"fix-path": "^4.0.0",
"lzma-native": "^8.0.6",
"node-fetch": "^3.3.2",
"progress": "^2.0.3",
"sqlite3": "^5.1.7",
"strip-ansi": "^7.1.0",
"sudo-prompt": "^9.2.1",
"sweetalert2": "^11.14.4",
"tar": "^7.4.3",
"unzipper": "^0.12.3",
"xml2js": "^0.6.2"
}
}