-
Notifications
You must be signed in to change notification settings - Fork 9
/
tauri.conf.json
126 lines (125 loc) · 2.85 KB
/
tauri.conf.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"$schema": "https://raw.githubusercontent.com/tauri-apps/tauri/dev/crates/tauri-cli/schema.json",
"productName": "OneLauncher",
"identifier": "org.polyfrost.launcher",
"app": {
"withGlobalTauri": true,
"macOSPrivateApi": true,
"security": {
"csp": null,
"assetProtocol": {
"enable": true,
"scope": {
"allow": [
"$DATA/OneLauncher/**",
"$RESOURCE/**"
],
"deny": ["$DATA/OneLauncher/db/*.stronghold"]
}
},
"freezePrototype": true,
"capabilities": []
},
"windows": [
{
"title": "OneLauncher",
"titleBarStyle": "Overlay",
"hiddenTitle": true,
"width": 1280,
"height": 802,
"minWidth": 1020,
"minHeight": 600,
"resizable": true,
"center": true,
"decorations": false,
"fullscreen": false,
"shadow": true,
"visible": false
}
]
},
"build": {
"beforeDevCommand": "pnpm --filter @onelauncher/frontend run dev",
"beforeBuildCommand": "pnpm --filter @onelauncher/frontend run build",
"frontendDist": "../frontend/dist",
"devUrl": "http://localhost:8001"
},
"bundle": {
"active": true,
"targets": [
"app",
"dmg",
"deb",
"rpm",
"appimage",
"nsis"
],
"category": "Game",
"icon": [
"../../packages/distribution/icons/32x32.png",
"../../packages/distribution/icons/128x128.png",
"../../packages/distribution/icons/[email protected]",
"../../packages/distribution/icons/icon.icns",
"../../packages/distribution/icons/icon.ico"
],
"copyright": "Polyfrost",
"publisher": "Polyfrost",
"license": "GPL-3.0-only",
"homepage": "https://polyfrost.org/",
"longDescription": "Next-generation open source Minecraft launcher",
"createUpdaterArtifacts": false,
"resources": [],
"externalBin": [],
"linux": {
"deb": {
"depends": [],
"desktopTemplate": "../../packages/distribution/linux/org.polyfrost.launcher.desktop.template"
},
"rpm": {
"desktopTemplate": "../../packages/distribution/linux/org.polyfrost.launcher.desktop.template"
},
"appimage": {
}
},
"shortDescription": "OneLauncher",
"macOS": {
"entitlements": "App.entitlements",
"exceptionDomain": null,
"frameworks": [],
"dmg": {
"appPosition": {
"x": 190,
"y": 190
},
"applicationFolderPosition": {
"x": 470,
"y": 190
}
},
"providerShortName": null,
"signingIdentity": null,
"minimumSystemVersion": "10.15"
},
"windows": {
"certificateThumbprint": null,
"webviewInstallMode": {
"silent": true,
"type": "downloadBootstrapper"
},
"digestAlgorithm": "sha256",
"timestampUrl": "https://timestamp.digicert.com"
}
},
"plugins": {
"updater": {
"pubkey": "",
"endpoints": ["https://polyfrost.org/releases/tauri/{{current_version}}/{{target}}/{{arch}}"]
},
"deep-link": {
"mobile": [],
"desktop": {
"schemes": ["onelauncher"]
}
}
}
}