forked from KatharaFramework/Netkit-Lab-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·18 lines (18 loc) · 964 Bytes
/
package.json
File metadata and controls
executable file
·18 lines (18 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "katharagui",
"version": "1.1.0",
"description": "Desktop UI for Kathara",
"repository": "https://github.com/KatharaFramework/Netkit-Lab-Generator.git",
"scripts": {
"start": "electron electronClient.js",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --icon=src/static/images/icons/mac/icon.icns --prune=true --out=release-builds",
"package-win": "electron-packager . --overwrite --asar --platform=win32 --arch=ia32 --icon=src/static/images/icons/win/icon.ico --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"KatharaGUI\"",
"package-linux": "electron-packager . --overwrite --platform=linux --arch=x64 --icon=src/static/images/icons/png/icon.png --prune=true --out=release-builds"
},
"author": "Gaetano Bonofiglio",
"license": "GPL-3.0",
"devDependencies": {
"electron": "^1.7.11",
"electron-packager": "^10.1.1"
}
}