-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
184 lines (184 loc) · 4.87 KB
/
package.json
File metadata and controls
184 lines (184 loc) · 4.87 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"name": "com.gams.miro",
"productName": "GAMS MIRO",
"version": "2.13.4",
"description": "GAMS MIRO is an interactive web application for GAMS models. It is designed for people working with GAMS looking for an easy and automated way to deploy their models. Extensive visualization options support you to make decisions based on optimization.",
"homepage": "https://gams.com/miro",
"type": "module",
"main": "./main.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"postinstall": "electron-builder install-app-deps && (cd src && npm install)",
"test": "node ./test/run-ui-tests.js",
"start": "electron .",
"pack": "node ./build/scripts/pre-pack.js && electron-builder --dir --publish never",
"dist": "npm run build-full --prefix src && node ./build/scripts/pre-pack.js && electron-builder --publish never",
"docker-prepare": "node ./build/scripts/pre-pack.js --docker",
"docker-build-ci": "node ./build/scripts/pre-pack.js --docker --ci"
},
"build": {
"appId": "com.gams.miro",
"productName": "GAMS MIRO",
"afterPack": "build/scripts/sign-dmg.js",
"afterAllArtifactBuild": "build/scripts/notarize.js",
"extraResources": [
"src/conf/*",
"src/whats-new/*",
"src/global.R",
"src/app.R",
"src/LICENSE",
"src/modules/**",
"src/components/**",
"src/JS/**",
"src/www/**",
"src/resources/**",
"src/examples/**",
"src/tools/**",
"src/UI/**",
"src/start-shiny.R",
"src/migrations/**"
],
"files": [
"**/*",
"!doc/**",
"!scripts/**",
"!r/**",
"!r-src/**",
"!src/**",
"!server/**"
],
"fileAssociations": [
{
"ext": "miroapp",
"name": "MIRO App",
"description": "MIRO Application",
"mimeType": "application/x-miroapp"
},
{
"ext": "miroscen",
"name": "MIRO Scenario",
"description": "MIRO Scenario",
"mimeType": "application/x-miroscen"
}
],
"protocols": [
{
"name": "GAMS MIRO Desktop URL",
"schemes": [
"com.gams.miro"
]
}
],
"mac": {
"extraResources": [
"r"
],
"identity": null,
"category": "public.app-category.productivity",
"icon": "./build/icon.icns",
"darkModeSupport": true,
"target": [
"dmg"
]
},
"win": {
"extraFiles": [
"r/**"
],
"target": "nsis",
"azureSignOptions": {
"publisherName": "GAMS Development Corporation",
"endpoint": "https://eus.codesigning.azure.net",
"certificateProfileName": "GAMS-Public-Cert",
"codeSigningAccountName": "GAMS-Development-Corp"
},
"icon": "./build/icon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerSidebar": "./build/installerSidebar.bmp",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"include": "build/uninstaller.nsh"
},
"deb": {
"maintainer": "GAMS Development Corp <support@gams.com>",
"depends": [
"libgtk-3-0",
"libnotify4",
"libnss3",
"libxss1",
"libxtst6",
"xdg-utils",
"libatspi2.0-0",
"libuuid1",
"libsecret-1-0",
"r-base-dev",
"libcurl-dev",
"libpng-dev"
]
},
"linux": {
"extraFiles": [
"r/**",
"scripts/globals.R",
"scripts/install_source.R"
],
"artifactName": "GAMS-MIRO-${version}.${ext}",
"target": [
"AppImage",
"deb"
],
"category": "Science",
"icon": "build/icons"
}
},
"repository": {
"type": "git",
"url": "https://github.com/GAMS-dev/miro.git"
},
"keywords": [
"GAMS",
"MIRO",
"Launcher"
],
"author": "GAMS Development Corp.",
"license": "GPL-3.0-only",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.35.0",
"@playwright/test": "^1.58.0",
"cheerio": "^1.1.2",
"electron": "^38.0.0",
"electron-builder": "26.8.1",
"eslint": "^9",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"fast-xml-parser": "^5.2.5",
"globals": "^16.3.0",
"playwright": "^1.58.0",
"prettier": "3.6.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"ajv": "^8.17.1",
"axios": "^1.12.2",
"bootstrap": "^4.6.2",
"electron-log": "^5.4.3",
"electron-store": "^10.1.0",
"execa": "^9.6.0",
"fs-extra": "^11.3.1",
"jquery": "^3.7.1",
"popper.js": "^1.16.1",
"portscanner": "^2.2.0",
"tree-kill": "^1.2.2",
"which": "^5.0.0",
"yauzl": "^3.2.0"
}
}