-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Expand file tree
/
Copy pathelectron-builder-linux-mac.json
More file actions
121 lines (121 loc) · 2.82 KB
/
electron-builder-linux-mac.json
File metadata and controls
121 lines (121 loc) · 2.82 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
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
{
"appId": "com.jgraph.drawio.desktop",
"copyright": "Copyright 2017-2026 draw.io Ltd",
"asar": true,
"files": [
"**/*",
"!**/WEB-INF{,/**}"
],
"artifactName": "${productName}-${arch}-${version}.${ext}",
"directories": {
"output": "./dist/"
},
"npmRebuild": false,
"publish": {
"provider": "github"
},
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"category": "public.app-category.graphics-design",
"extendInfo": {
"UTExportedTypeDeclarations": [
{
"UTTypeIdentifier": "com.jgraph.drawio",
"UTTypeDescription": "draw.io Diagram",
"UTTypeConformsTo": ["public.xml", "public.data"],
"UTTypeTagSpecification": {
"public.filename-extension": ["drawio"],
"public.mime-type": ["application/vnd.jgraph.mxfile"]
}
}
],
"CFBundleDocumentTypes": [
{
"CFBundleTypeExtensions": ["drawio"],
"CFBundleTypeName": "draw.io Diagram",
"CFBundleTypeRole": "Editor",
"CFBundleTypeIconFile": "icon.icns",
"LSItemContentTypes": ["com.jgraph.drawio"],
"LSHandlerRank": "Owner"
},
{
"CFBundleTypeExtensions": ["vsdx"],
"CFBundleTypeName": "VSDX Document",
"CFBundleTypeRole": "Editor",
"CFBundleTypeIconFile": "icon.icns",
"LSHandlerRank": "Default"
}
]
},
"target": [
{ "target": "zip", "arch": [
"x64",
"arm64"
]
},
{ "target": "dmg", "arch": [
"x64",
"arm64",
"universal"
]
}
]
},
"afterSign": "build/notarize.mjs",
"afterPack": "build/fuses.cjs",
"dmg": {
},
"linux": {
"executableName": "drawio",
"category": "Graphics",
"maintainer": "draw.io <desktop@draw.io>",
"icon": "./build",
"desktop": {
"entry": {
"StartupWMClass": "draw.io"
}
},
"target": [
{ "target": "AppImage", "arch": [
"x64",
"arm64"
]
},
{ "target": "deb", "arch": [
"x64",
"arm64"
]
},
{ "target": "rpm", "arch": [
"x64",
"arm64"
]
}
]
},
"rpm": {
"fpm": [
"--rpm-rpmbuild-define=_build_id_links none",
"--rpm-digest=sha256"
]
},
"fileAssociations": [
{
"ext": "drawio",
"name": "draw.io Diagram",
"description": "draw.io Diagram",
"mimeType": "application/vnd.jgraph.mxfile",
"role": "Editor"
},
{
"ext": "vsdx",
"name": "VSDX Document",
"description": "VSDX Document",
"mimeType": "application/vnd.visio",
"role": "Editor"
}
]
}