Last active
December 29, 2020 14:52
-
-
Save thatisuday/db254768570d6f8563b20921f3d4040f to your computer and use it in GitHub Desktop.
A sample package.json file for the Electron application.
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-lessons", | |
"version": "1.0.0", | |
"main": "app/index.js", | |
"scripts": { | |
"start": "electron ." | |
}, | |
"devDependencies": { | |
"electron": "^11.1.1" | |
}, | |
"dependencies": { | |
"chokidar": "^3.4.3", | |
"drag-drop": "^6.1.0", | |
"fs-extra": "^9.0.1", | |
"open": "^7.3.0" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment