-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathperry.config.ts
More file actions
54 lines (49 loc) · 1.06 KB
/
perry.config.ts
File metadata and controls
54 lines (49 loc) · 1.06 KB
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
import { PerryConfig } from 'perry';
const config: PerryConfig = {
name: 'Mango',
identifier: 'com.skelpo.mango',
version: '1.0.0',
entry: 'src/app.ts',
targets: {
macos: {
framework: 'AppKit',
minimumVersion: '13.0',
icon: 'logo/mango-app-icon-512.png',
category: 'public.app-category.developer-tools',
},
ios: {
framework: 'UIKit',
minimumVersion: '16.0',
icon: 'logo/mango-app-icon-512.png',
supportedOrientations: ['portrait', 'landscape'],
},
android: {
framework: 'Views',
minimumSdk: 26,
targetSdk: 34,
icon: 'logo/mango-app-icon-512.png',
},
linux: {
framework: 'GTK4',
icon: 'logo/mango-app-icon-256.png',
},
windows: {
framework: 'Win32',
icon: 'logo/mango-app-icon-256.png',
},
web: {
framework: 'DOM',
},
},
build: {
minify: true,
sourceMaps: false,
stripDebug: true,
},
permissions: {
network: true,
fileSystem: 'read-write',
keychain: true,
},
};
export default config;