-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 1018 Bytes
/
package.json
File metadata and controls
29 lines (28 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "electron-auto-update-example",
"version": "1.0.2",
"description": "",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder build --win --publish never",
"deploy": "electron-builder",
"ship": "electron-builder build --win --publish always",
"package-mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --prune=true --out=release-builds",
"package-win": "electron-packager . ssapp --overwrite --asar --platform=win32 --arch=x64 --prune=true --out=release-builds --version-string.CompanyName=CE --version-string.FileDescription=CE --version-string.ProductName=\"Sub Stockist\""
},
"author": "dhirendra",
"license": "ISC",
"devDependencies": {
"electron": "^7.1.11",
"electron-builder": "^22.3.2"
},
"dependencies": {
"electron-updater": "^4.2.0"
},
"repository": {
"type" : "git",
"url" : "https://github.com/direndraQB/electron.git"
}
}