-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "read-it",
"version": "1.0.0",
"description": "Master Electron Project",
"main": "main.js",
"scripts": {
"start": "electron .",
"watch": "nodemon --exec electron .",
"reset": "git reset --hard",
"win-cert": "electron-builder create-self-signed-cert -p SourabhMunat"
},
"repository": "https://github.com/Sourabh-Munat/electron-learning",
"homepage": "https://github.com/Sourabh-Munat/electron-learning",
"keywords": [
"Electron",
"Master Electron",
"demo"
],
"author": "SourabhMunat",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^11.0.0",
"electron-builder": "^22.9.1",
"nodemon": "^2.0.0"
},
"dependencies": {
"electron-window-state": "^5.0.3"
},
"build": {
"appId": "com.sourabh-munat.read-it",
"copyright": "sourabhMunat",
"mac": {
"category": "public.app-category.productivity",
"target": "dmg"
},
"win": {
"target": "nsis",
"certificateFile": "private/SourabhMunat.pfx",
"certificatePassword": "",
"verifyUpdateCodeSignature": false,
"publisherName": "SourabhMunat"
},
"linux": {
"category": "Utility"
}
}
}