-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "neogutenberg",
"productName": "NeoGutenberg",
"version": "0.1.2",
"description": "A digital printing press",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-all": "electron-builder -mwl",
"postinstall": "electron-builder install-app-deps"
},
"repository": "https://github.com/atnpgo/NeoGutenberg",
"keywords": [
"epub",
"mobi",
"ebook",
"print",
"printing"
],
"author": "ATNPGO",
"license": "Apache-2.0",
"devDependencies": {
"electron": "9.1.0",
"electron-builder": "22.7.0",
"eslint": "7.4.0"
},
"dependencies": {
"epub-gen": "0.1.0",
"showdown": "1.9.1",
"kindlegen": "1.1.0",
"fs-extra": "9.0.1"
},
"build": {
"appId": "wtf.atnpgo.neogutenberg",
"productName": "NeoGutenberg",
"mac": {
"category": "public.app-category.productivity",
"icon": "logo/logo.icns"
},
"dmg": {
"icon": "logo/logo.icns"
},
"win": {
"icon": "logologo.ico"
},
"linux": {
"artifactName": "NeoGutenberg-${version}.${ext}",
"icon": "img/logo.png",
"target": [
"AppImage"
],
"category": "Office",
"executableName": "NeoGutenberg"
}
}
}