19 lines
332 B
JSON
19 lines
332 B
JSON
{
|
|
"name": "electron-counter",
|
|
"version": "1.0.0",
|
|
"description": "Electron app with live counter",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"start": "electron ."
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^28.3.3"
|
|
},
|
|
"build": {
|
|
"appId": "com.example.electron-counter",
|
|
"win": {
|
|
"target": "nsis"
|
|
}
|
|
}
|
|
}
|