-
Notifications
You must be signed in to change notification settings - Fork 3
/
electron.json
89 lines (89 loc) · 2.22 KB
/
electron.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
{
"asar": true,
"appId": "com.rmteam.saa1099tracker",
"copyright": "Copyright (c) 2017-2023 RM-TEAM",
"productName": "SAA1099Tracker",
"directories": {
"buildResources": "assets/resources",
"output": "dist"
},
"files": [
"!**/.*",
"!{electron.json,webpack.config.js,tsconfig.json}",
"!{src,styles,templates,build,dist}",
"!**/*.{svg,eot,map}",
"!**/{CHANGELOG*,AUTHORS*,LICENSE*,README*,test,__tests__,tests,powered-test,example,examples,screenshot,screenshots,Makefile*,*.d.ts}"
],
"linux": {
"category": "Audio",
"packageCategory": "audio",
"desktop": {
"Categories": "GTK;Audio;AudioVideo;",
"Comment": "chiptune music tracker for Philips SAA 1099 soundchip",
"MimeType": "text/x-saa1099tracker",
"Name": "SAA1099Tracker",
"StartupNotify": "false",
"Terminal": "false",
"Type": "Application",
"Version": "1.0",
"X-MultipleArgs": "false"
},
"executableName": "SAA1099Tracker",
"icon": "assets/resources/png/",
"target": [
"AppImage",
"rpm",
"deb"
]
},
"appImage": {
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"rpm": {
"depends": ["util-linux"]
},
"mac": {
"identity": null,
"category": "public.app-category.music",
"hardenedRuntime": true,
"entitlements": "assets/resources/entitlements.mac.plist",
"entitlementsInherit": "assets/resources/entitlements.mac.plist",
"artifactName": "${productName}-${version}.${ext}",
"target": ["dmg"]
},
"dmg": {
"icon": "assets/resources/icon.icns",
"background": "assets/resources/background.tiff",
"iconSize": 110,
"contents": [
{
"x": 140,
"y": 225
},
{
"x": 415,
"y": 225,
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": 540,
"height": 405
}
},
"mas": {
"publish": null
},
"win": {
"icon": "assets/resources/icon.ico",
"target": ["squirrel"]
},
"squirrelWindows": {
"iconUrl": "https://saa1099tracker.borik.net/assets/icon.ico",
"loadingGif": "assets/resources/loading.gif",
"msi": true,
"remoteReleases": false,
"useAppIdAsId": false
}
}