forked from element-hq/element-desktop
-
Notifications
You must be signed in to change notification settings - Fork 8
/
overlay-package.json
71 lines (71 loc) · 1.92 KB
/
overlay-package.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
{
"name": "schildichat-desktop",
"productName": "SchildiChat",
"description": "A Matrix Client based on Element with a more traditional instant messaging experience",
"author": "SchildiChat",
"repository": {
"url": "https://github.com/SchildiChat/element-desktop"
},
"homepage": "https://schildi.chat/",
"dependencies": {
"electron-osx-sign": "^0.5.0"
},
"build": {
"appId": "chat.schildi.desktop",
"linux": {
"target": "deb",
"category": "Network;InstantMessaging;Chat;VideoConference",
"maintainer": "[email protected]",
"desktop": {
"StartupWMClass": "schildichat"
}
},
"deb": {
"depends": ["libgtk-3-0", "libnotify4", "libnss3", "libxss1", "libxtst6", "xdg-utils", "libatspi2.0-0", "libuuid1", "libsecret-1-0"],
"packageCategory": "net",
"priority": "extra"
},
"mac": {
"category": "public.app-category.social-networking",
"extendInfo": {
"NSUserActivityTypes": [
"org.matrix.room"
],
"ITSAppUsesNonExemptEncryption": true
},
"darkModeSupport": true,
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.inherit.plist",
"asarUnpack": [
".hak/hakModules/keytar/build/Release/keytar.node",
".hak/hakModules/matrix-seshat/native/index.node"
]
},
"dmg": {
"icon": "build/dmg.icns"
},
"mas": {
"extendInfo": {
"LSMultipleInstancesProhibited": true
},
"entitlements": "build/entitlements.mas.plist",
"provisioningProfile": "build/schildi_dev.provisionprofile",
"hardenedRuntime": false
},
"protocols": [
{
"name": "element",
"schemes": [
"element"
]
},
{
"name": "schildichat",
"schemes": [
"schildichat"
]
}
]
}
}