-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.05 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "electron-quick-start",
"productName": "Electron Quick Start - VanillaJS",
"version": "1.0.36",
"description": "Your awesome app description",
"main": "electron/main.js",
"author": {
"name": "Heliomar P. Marques",
"email": "[email protected]",
"url": "https://navto.me/heliomarpm"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/heliomarpm/electron-quick-start.git"
},
"bugs": {
"url": "https://github.com/heliomarpm/electron-quick-start/issues"
},
"homepage": "https://github.com/heliomarpm/electron-quick-start#readme",
"keywords": [
"electron",
"electron-quick-start",
"electron-app",
"electron-builder",
"vanillajs"
],
"scripts": {
"dev": "electron . --developer",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder",
"build:mac": "electron-builder -m",
"build:linux": "electron-builder -l",
"build:win": "electron-builder -w",
"build:win32": "electron-builder -w --ia32",
"build:win64": "electron-builder -w --x64",
"deploy": "node ./node_modules/gh_deploy/index.js"
},
"devDependencies": {
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"gh_deploy": "github:heliomarpm/gh_deploy",
"open": "^10.1.0",
"semver": "^7.6.3"
},
"build": {
"appId": "br.heliomarpm.elqs",
"productName": "Electron VanillaJS - Quick Start",
"copyright": "Copyright © 2023 — ${author}",
"artifactName": "${name}_Setup_v${version}_${os}-${arch}.${ext}",
"portable": {
"artifactName": "${name}_Portable-v${version}_${os}-${arch}.${ext}"
},
"directories": {
"buildResources": "src/assets/icons",
"output": "dist"
},
"mac": {
"category": "public.app-category.utilities"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"linux": {
"category": "Utility",
"target": [
"AppImage",
"deb",
"freebsd",
"rpm"
]
}
}
}