Created
September 11, 2016 20:56
-
-
Save shikhirsingh/a2bd9116b0c2418d065f3519592692a6 to your computer and use it in GitHub Desktop.
A template package.json for packaging an Ext JS app with Electron for macOS ONLY
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": "starterapp", | |
"version": "1.0.0", | |
"description": "A starter Ext JS 6 App", | |
"main": "./app/main.js", | |
"scripts": { | |
"start": "electron .", | |
"package": "electron-packager ./ starterapp --platform=darwin --out ./dist --overwrite", | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "TBD", | |
"license": "UNLICENSED", | |
"dependencies": { | |
"electron-prebuilt": "^1.3.5" | |
}, | |
"devDependencies": { | |
"electron-packager": "^8.0.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment