Initial commit, copied from electron example.

This commit is contained in:
2022-06-10 15:48:35 -04:00
parent 95f931a9e9
commit 09fa40f4c8
13 changed files with 2850 additions and 0 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "electron-quick-start",
"version": "1.0.0",
"description": "A minimal Electron application",
"main": "main.js",
"scripts": {
"start": "electron ."
},
"repository": "https://github.com/electron/electron-quick-start",
"keywords": [
"Electron",
"quick",
"start",
"tutorial",
"demo"
],
"author": "GitHub",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^19.0.3"
},
"dependencies": {
"csvtojson": "^2.0.10",
"json2csv": "^5.0.7"
}
}