forked from Nexus-Mods/Vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
electron-builder-advanced.json
126 lines (126 loc) · 3.85 KB
/
electron-builder-advanced.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": "node_modules/electron-builder/node_modules/app-builder-lib/scheme.json",
"directories": {
"output": "dist_custom"
},
"asar": true,
"asarUnpack": [
"7z.exe",
"LICENSE.md",
"bundledPlugins",
"lib/modinstaller",
"node_modules/7z-bin",
"node_modules/bootstrap-sass/assets/stylesheets",
"node_modules/react-select/scss",
"node_modules/fomod-installer/dist",
"node_modules/opn/xdg-open",
"node_modules/json-socket",
"assets/*.exe",
"assets/css/**",
"**/*.node"
],
"afterSign": "./createMD5List.js",
"appId": "com.nexusmods.vortex",
"includeSubNodeModules": true,
"win": {
"target": "nsis",
"publish": [
{
"provider": "github",
"private": false
}
],
"forceCodeSigning": true,
"rfc3161TimeStampServer": "http://timestamp.comodoca.com/rfc3161",
"timeStampServer": "http://timestamp.comodoca.com",
"publisherName": "Black Tree Gaming Limited"
},
"nsis": {
"perMachine": true,
"runAfterFinish": true,
"menuCategory": true,
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"uninstallDisplayName": "${productName}"
},
"linux": {
"target": [
"tar.bz2",
"AppImage",
"deb",
"freebsd",
"pacman",
"rpm",
"snap"
],
"icon": "assets/images/vortex.png",
"category": "Network;Development;Game;",
"synopsis": "Mod Manager",
"description": "The elegant, powerful, and open-source mod manager from Nexus Mods.",
"maintainer": "Black Tree Gaming Ltd. <[email protected]> (https://www.nexusmods.com/)",
"mimeTypes": ["x-scheme-handler/nxm"]
},
"flatpak": {},
"freebsd": {
"compression": "bzip2"
},
"rpm": {
"compression": "bzip2"
},
"snap": {
"confinement": "devmode"
},
"extraResources": [
"locales"
],
"files": [
"**/*",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme,test,__tests__,tests,powered-test,example,examples,*.d.ts}",
"!**/node_modules/.bin${/*}",
"!**/*.{o,hprof,orig,pyc,pyo,rbc}",
"!**/*.js.map",
"!**/*.iobj",
"!**/*.ipdb",
"!**/*.ilk",
"!**/*.vcxproj",
"!**/*.vcxproj.filters",
"!**/Makefile",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,__pycache__,thumbs.db,.gitignore,.gitattributes,.editorconfig,.flowconfig,.yarn-metadata.json,.idea,appveyor.yml,.travis.yml,circle.yml,npm-debug.log,.nyc_output,yarn.lock,.yarn-integrity}",
"!**/*.{pdb,lib,VC.db,exp,gypi,d.ts}",
"!**/build/Debug${/*}",
"!**/build/Release/obj${/*}",
"!**/build/.vs${/*}",
"!**/autogypi.json",
"!**/binding.gyp",
"!**/binding.map",
"!**/build/src/Release/obj${/*}",
"!**/node_modules/7z-bin/**/*",
"**/node_modules/7z-bin/*",
"**/node_modules/7z-bin/${platform}/*",
"**/node_modules/7z-bin/bin/*",
"!**/node_modules/edge/lib/native${/*}",
"!**/node_modules/edge/src${/*}",
"!**/node_modules/leveldown/deps${/*}",
"!**/node_modules/node-sass/{build,src,vendor}${/*}",
"!**/node_modules/recharts/umd${/*}",
"!**/node_modules/ffi/deps",
"!**/node_modules/harmony-patcher/VortexHarmonyInstaller",
"!**/Release/*.map",
"!**/node_modules/bootstrap-sass/assets/fonts",
"!**/node_modules/recharts/node_modules/d3-scale/img",
"!**/node_modules/recharts/node_modules/d3-shape/img",
"!**/node_modules/d3-geo/img",
"!**/node_modules/*/prebuilds/**/*",
"**/node_modules/*/prebuilds/${platform}-${arch}/*",
"!**/node_modules/fomod-installer/Build",
"!**/node_modules/fomod-installer/lib",
"!**/node_modules/fomod-installer/InstallScripting",
"!**/node_modules/libxmljs/vendor/libxml",
"!**/node_modules/native-errors/Detours",
"!**/node_modules/zeromq/build/libzmq",
"!**/node_modules/zeromq/prebuilds"
],
"buildDependenciesFromSource": false,
"npmRebuild": false
}