Skip to content

Instantly share code, notes, and snippets.

@rishabhbhardwaj
Last active November 20, 2016 18:52
Show Gist options
  • Save rishabhbhardwaj/6b532bb8260035221cdfb68c23c1ee59 to your computer and use it in GitHub Desktop.
Save rishabhbhardwaj/6b532bb8260035221cdfb68c23c1ee59 to your computer and use it in GitHub Desktop.
SampleElectron package.json desc
{
"name": "Electron_HelloWorld",
"version": "1.0.0",
"description": "Sample Application",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build -mwl"
},
"keywords": [
"Electron"
],
"author": "learner",
"devDependencies": {
"electron": "^1.4.1",
"electron-builder": "^7.13.0",
"electron-packager": "^8.1.0",
"electron-winstaller": "^2.3.4"
},
"build": {
"appId": "electron_helloworld",
"mac": {
"category": "education"
},
"win": {
"iconUrl": "https://pythonhosted.org/pgmagick/_images/helloworld.png"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment