workflow_launcher/package.json
2024-10-22 21:40:01 +02:00

57 lines
1.4 KiB
JSON

{
"name": "WorkflowLauncher",
"version": "1.0.6",
"description": "NextGen Institute workflows",
"main": "main.js",
"homepage": "https://ngci.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
}
},
"configurations": [
{
"name": "Debug Main Process",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
"windows": {
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
},
"args" : ["."],
"outputCapture": "std"
}
]
}