-
Notifications
You must be signed in to change notification settings - Fork 709
/
forge.config.js
68 lines (68 loc) · 1.69 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
module.exports = {
packagerConfig: {
appCopyright: 'Copyright © 2023 dice2o',
appBundleId: 'com.dice2o.binggpt',
icon: 'icon',
platforms: ['darwin', 'linux', 'win32'],
arch: ['x64', 'arm64'],
asar: true,
},
rebuildConfig: {},
makers: [
{
name: '@electron-forge/maker-squirrel',
config: {
iconUrl: 'https://github.com/dice2o/BingGPT/raw/main/icon.ico',
setupIcon: 'icon.ico',
authors: 'dice2o',
description: 'AI-powered copilot',
},
},
{
name: '@electron-forge/maker-zip',
platforms: ['darwin', 'win32'],
},
{
name: '@electron-forge/maker-dmg',
config: {
icon: 'icon.icns',
background: 'bg.png',
overwrite: true,
},
},
{
name: '@electron-forge/maker-deb',
config: {
options: {
bin: 'BingGPT',
name: 'binggpt',
productName: 'BingGPT',
description: 'AI-powered copilot',
productDescription: 'AI-powered copilot',
version: '0.3.7',
categories: ['Utility'],
maintainer: 'dice2o',
homepage: 'https://github.com/dice2o/BingGPT',
icon: 'icon.png',
},
},
},
{
name: '@electron-forge/maker-rpm',
config: {
options: {
bin: 'BingGPT',
name: 'binggpt',
productName: 'BingGPT',
description: 'AI-powered copilot',
productDescription: 'AI-powered copilot',
version: '0.3.7',
categories: ['Utility'],
maintainer: 'dice2o',
homepage: 'https://github.com/dice2o/BingGPT',
icon: 'icon.png',
},
},
},
],
}