Last active
October 15, 2017 11:38
-
-
Save coelhoadler/b089522b55fd7e137981cd919e4029b0 to your computer and use it in GitHub Desktop.
electron-packager nº 1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "electron-packager", | |
| "version": "0.0.1", | |
| "description": "", | |
| "main": "main.js", | |
| "private": true, | |
| "scripts": { | |
| "test": "echo \"Error: no test specified\" && exit 1", | |
| "start": "electron . --develop true", | |
| "build:mac": "node electron-packager.js --develop false --asar --platform=darwin --arch=x64 --icon=./src/assets/icons/mac/logotipo.icns", | |
| "build:linux": "node electron-packager.js --asar --platform=linux --arch=x64", | |
| "build:windows": "node electron-packager.js --asar --platform=win32 --arch=x64", | |
| "build:all": "node electron-packager.js --asar --overwrite --platform=all --arch=all", | |
| }, | |
| "keywords": [ | |
| "test", | |
| ], | |
| "author": "Adler Coelho", | |
| "license": "ISC", | |
| "devDependencies": { | |
| "asar": "^0.13.0", | |
| "electron": "1.6.11", | |
| "electron-packager": "^9.0.1", | |
| "minimist": "^1.2.0", | |
| "unzip": "^0.1.11" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment