forked from sindresorhus/caprine
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder.json
106 lines (106 loc) · 2.36 KB
/
electron-builder.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
{
"electronVersion": "22.3.27",
"files": [
"**/*",
"!media${/*}"
],
"asarUnpack": [
"static/Icon.png",
"static/Icon64.png",
"static/icon.ico"
],
"appId": "com.alex313031.caprine",
"copyright": "Copyright © 2024 Alex313031",
"mac": {
"category": "public.app-category.social-networking",
"icon": "build/icon.icns",
"electronUpdaterCompatibility": ">=4.5.2",
"darkModeSupport": true,
"artifactName": "Caprine_${version}_macos_${arch}.${ext}",
"target": [
"dmg",
"zip"
],
"extendInfo": {
"LSUIElement": 1,
"NSCameraUsageDescription": "Caprine needs access to your camera.",
"NSMicrophoneUsageDescription": "Caprine needs access to your microphone."
}
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm",
"zip"
],
"icon": "build/icons",
"maintainer": "Alex313031",
"vendor": "Alex313031",
"synopsis": "Elegant Facebook Messenger desktop app",
"description": "Caprine is an unofficial and privacy focused Facebook Messenger app with many useful features.",
"category": "Network;Chat",
"artifactName": "caprine_${version}_${arch}.${ext}",
"desktop": {
"Name": "Caprine",
"StartupWMClass": "caprine",
"Keywords": "facebook;messenger;chat;",
"Icon": "caprine"
}
},
"snap": {
"plugs": [
"default",
"camera",
"removable-media"
],
"publish": [
{
"provider": "github"
},
{
"provider": "snapStore",
"channels": [
"stable"
]
}
]
},
"win": {
"target": [
"zip",
"portable",
"nsis"
],
"verifyUpdateCodeSignature": false,
"icon": "build/icon.ico",
"artifactName": "Caprine_${version}_${arch}.${ext}"
},
"nsis": {
"shortcutName": "Caprine",
"artifactName": "Caprine_Setup_${version}_${arch}.${ext}",
"deleteAppDataOnUninstall": true,
"uninstallDisplayName": "Caprine ${version}",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true
},
"portable": {
"artifactName": "Caprine_portable_${version}_${arch}.${ext}"
},
}