-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "lector",
"version": "1.1.0",
"productName": "Lector",
"description": "A simple PDF Reader",
"main": "src/js/main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"author": "Sagar Gurtu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sagargurtu/lector.git"
},
"dependencies": {
"custom-electron-titlebar": "^3.0.9"
},
"devDependencies": {
"custom-electron-titlebar": "^3.0.9",
"electron": "^5.0.4",
"electron-builder": "^21.1.1"
},
"build": {
"appId": "lector",
"productName": "Lector",
"copyright": "Copyright (c) 2019 Sagar Gurtu",
"buildVersion": "1.1.0",
"win": {
"target": "NSIS",
"icon": "./src/assets/icons/win/icon.ico",
"fileAssociations": {
"ext": "pdf",
"icon": "./src/assets/icons/win/file.ico"
}
},
"nsis": {
"artifactName": "${productName}Setup.${ext}",
"uninstallDisplayName": "${productName}"
}
},
"keywords": [
"electron",
"pdf",
"reader"
]
}