-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathforge.config.js
45 lines (44 loc) · 1.34 KB
/
forge.config.js
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
const { FusesPlugin } = require('@electron-forge/plugin-fuses');
const { FuseV1Options, FuseVersion } = require('@electron/fuses');
module.exports = {
packagerConfig: {
asar: true,
icon: "./images/logo.png",
},
rebuildConfig: {},
makers: [
{
name: "@electron-forge/maker-dmg",
config: {
format: "ULFO",
icon: "./images/logo.icns",
background: './images/installBackground658.png',
iconSize: 1024,
name: "Tea Package Builder",
overwrite: true
},
},
{
name: "@electron-forge/maker-deb",
config: {
options: {
maintainer: "Andrii Riabchenko",
homepage: "https://github.com/ArionThinker/tea-package-builder",
icon: "./images/logo.png",
categories: ["Development"],
name: "Tea Package Builder",
description: "Package builder for tea.xyz pantry.",
productDescription:
"Tea Package Builder is a tool that helps create packages for Tea.xyz quickly and conveniently. The program fetches an up-to-date list of packages from tea.xyz, enabling convenient input fields with autocomplete for dependencies.",
genericName: "Tea Package Builder",
},
},
},
],
plugins: [
{
name: "@electron-forge/plugin-auto-unpack-natives",
config: {},
}
],
};