-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
147 lines (147 loc) · 3.98 KB
/
package.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "com.gams.miro",
"productName": "GAMS MIRO",
"version": "2.11.0",
"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": {
"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/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/**",
"!electron-builder.env",
"!src/**"
],
"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"
],
"category": "public.app-category.productivity",
"icon": "./build/icon.icns",
"darkModeSupport": true,
"target": [
"dmg"
]
},
"win": {
"extraFiles": [
"r/**"
],
"target": "nsis",
"timeStampServer": "http://timestamp.digicert.com",
"rfc3161TimeStampServer": "http://timestamp.apple.com/ts01",
"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"
},
"linux": {
"extraFiles": [
"r/**",
"scripts/globals.R",
"scripts/install_source.R"
],
"artifactName": "GAMS-MIRO-${version}.${ext}",
"target": "AppImage",
"category": "Science"
}
},
"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": {
"electron": "^33.2.1",
"electron-builder": "25.1.8",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"prettier": "3.4.2"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"ajv": "^8.17.1",
"axios": "^1.7.9",
"bootstrap": "^4.6.2",
"electron-log": "^5.2.4",
"electron-store": "^10.0.0",
"execa": "^9.5.2",
"fs-extra": "^11.2.0",
"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"
}
}