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
|
{
"name": "Argon",
"product": "Argon",
"version": "22.0.3",
"description": "Native desktop Argon app",
"main": "main.js",
"author": "Minteck",
"artwork": "Christoffer Engström",
"license": "UNLICENSED",
"dependencies": {
"@electron/remote": "^1.0.4",
"jquery": "^3.6.0",
"open": "^8.4.0"
},
"colors": {
"primary": "#1a2733",
"secondary": "#5b87b3",
"title": "#75aee6",
"info": "#b3d9ff"
},
"devDependencies": {
"electron-builder": "^22.14.13",
"electron": "^13.6.9"
},
"build": {
"appId": "org.minteck.automatecloud.argon",
"copyright": "© Minteck. Some Rights Reserved.",
"productName": "Argon Desktop",
"mac": {
"category": "minteck.automatecloud",
"icon": "splashicon.icns",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
},
"win": {
"icon": "splashicon.ico",
"publisherName": "Minteck Automate Cloud"
},
"nsis": {
"allowElevation": false,
"installerIcon": "splashicon.ico",
"uninstallerIcon": "splashicon.ico"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64",
"arm64"
]
},
{
"target": "deb",
"arch": [
"x64",
"arm64"
]
},
{
"target": "rpm",
"arch": [
"x64",
"arm64"
]
},
{
"target": "tar.gz",
"arch": [
"x64",
"arm64"
]
}
]
},
"buildVersion": "trunk"
},
"scripts": {
"pack": "electron-builder --dir",
"dist": "electron-builder -m -l -w --x64 --arm64"
}
}
|