init: electron-demo

This commit is contained in:
bai.zixv 2025-03-14 16:05:53 +08:00
commit 8250f76055
4 changed files with 1421 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
node_modules/

1
main.js Normal file
View File

@ -0,0 +1 @@
console.log('Hello from Electron 👋')

1403
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

16
package.json Normal file
View File

@ -0,0 +1,16 @@
{
"name": "electron-demo",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"electron": "^35.0.1"
}
}