workflow_launcher/package.json
2024-05-20 05:42:33 +02:00

43 lines
1.0 KiB
JSON

{
"name": "WorkflowLauncher",
"version": "1.0.5",
"description": "NextGen Institute workflows",
"main": "main.js",
"homepage": "https://nextgenerations-cities.encs.concordia.ca/gitea/g_gutierrez/workflow_launcher",
"scripts": {
"start": "electron .",
"test": "test",
"dist-windows": "electron-builder --windows portable",
"dist-mac": "electron-builder --mac",
"dist-linux": "electron-builder"
},
"author": "Guille Gutierrez <guillermo.gutierrezmorote@concordia.ca>",
"license": "GPL-3.0-or-later",
"devDependencies": {
"electron": "^28.2.3",
"electron-builder": "^24.13.3"
},
"dependencies": {
"browser-fs-access": "^0.35.0",
"dotenv": "^16.4.5",
"filereader": "^0.10.3"
},
"build": {
"appId": "ca.concordia",
"win": {
"icon": "./icon.ico"
},
"linux": {
"icon": "./icon.png",
"category": "Science",
"target": [
"deb"
]
},
"mac": {
"category": "public.app-category.education",
"identity": null
}
}
}