-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
115 lines (115 loc) · 3.14 KB
/
electron-builder.json
File metadata and controls
115 lines (115 loc) · 3.14 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
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
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
"appId": "com.sunnypatell.netdash-toolkit",
"productName": "NetDash Toolkit",
"copyright": "Copyright © 2024-2025 Sunny Patel",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"directories": {
"output": "release",
"buildResources": "electron/resources"
},
"icon": "electron/resources/icon",
"files": [
"dist-electron/**/*",
"out/**/*",
"public/**/*",
"!**/*.map",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin"
],
"extraMetadata": {
"main": "dist-electron/main.js"
},
"asar": true,
"compression": "maximum",
"mac": {
"icon": "electron/resources/icon.icns",
"category": "public.app-category.developer-tools",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
],
"darkModeSupport": true,
"hardenedRuntime": false,
"gatekeeperAssess": false,
"extendInfo": {
"NSAppTransportSecurity": {
"NSAllowsArbitraryLoads": true
},
"NSLocalNetworkUsageDescription": "NetDash Toolkit requires network access to perform ping, traceroute, port scanning, and other network diagnostics.",
"NSNetworkVolumesUsageDescription": "NetDash Toolkit may need to access network volumes for network discovery features."
}
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": 540,
"height": 400
}
},
"win": {
"icon": "electron/resources/icon.ico",
"target": [
{
"target": "nsis",
"arch": ["x64"]
},
{
"target": "portable",
"arch": ["x64"]
}
],
"requestedExecutionLevel": "asInvoker",
"legalTrademarks": "NetDash Toolkit is a trademark of Sunny Patel"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "NetDash Toolkit",
"uninstallDisplayName": "NetDash Toolkit"
},
"linux": {
"icon": "electron/resources/icon.png",
"category": "Network",
"target": [
{
"target": "AppImage",
"arch": ["x64"]
},
{
"target": "deb",
"arch": ["x64"]
}
],
"maintainer": "Sunny Patel <[email protected]>",
"vendor": "Sunny Patel",
"synopsis": "Professional network engineering toolkit",
"description": "NetDash Toolkit is a comprehensive network engineering workbench featuring real ICMP ping, traceroute, port scanning, subnet calculations, and VLAN management.",
"executableName": "netdash-toolkit"
},
"appImage": {},
"publish": null
}