forked from mignaway/EpubReader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.82 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.82 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "epub-reader",
"productName": "EpubReader",
"version": "1.0.6",
"description": "Epub Reader Application built with ElectronJS",
"main": "src/index.js",
"scripts": {
"start": "electron-forge start",
"dev": "concurrently \"npm run tailwatch\" \"electron-forge start\" ",
"tailbuild": "tailwind build -i ./src/assets/css/tailinit.css -o ./src/assets/css/tailwindcss.css --minify",
"tailwatch": "tailwind build -i ./src/assets/css/tailinit.css -o ./src/assets/css/tailwindcss.css --watch",
"dist:windows": "electron-builder --windows",
"dist:linux": "electron-builder --linux"
},
"repository": "https://github.com/mignaway/EpubReader",
"publish": {
"provider": "github",
"releaseType": "release"
},
"build": {
"appId": "EpubReader",
"win": {
"target": [
"nsis"
],
"icon": "src/icon.ico"
},
"linux": {
"target": [
"deb"
],
"icon": "src/icon.png",
"category": "Utility"
},
"asar": true,
"nsis": {
"oneClick": false,
"installerIcon": "src/icon.ico",
"uninstallerIcon": "src/icon.ico",
"uninstallDisplayName": "EpubReaderUninstaller",
"license": "LICENSE.md",
"allowToChangeInstallationDirectory": true
},
"files": [
"**/*",
"!dist/",
"!src/epubs/",
"!src/assets/json/",
"!readme.md",
"!git-previews/"
]
},
"engines": {
"node": ">=16.13.2"
},
"keywords": [],
"author": {
"name": "mignaway",
"email": "40722616+mignaway@users.noreply.github.com"
},
"license": "MIT",
"config": {
"forge": {
"packagerConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "epub_reader"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
},
"dependencies": {
"dominant-color": "^0.0.1",
"ebook-convert": "^2.0.1",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^5.3.0",
"epub2": "^2.0.7",
"epubjs": "^0.3.93",
"fs-extra": "^10.1.0",
"jpeg-js": "^0.4.4",
"jquery": "^3.6.0",
"node-vibrant": "^3.1.6",
"request": "^2.88.2"
},
"devDependencies": {
"@electron-forge/cli": "^6.1.1",
"@electron-forge/maker-deb": "^6.0.0-beta.63",
"@electron-forge/maker-rpm": "^6.0.0-beta.63",
"@electron-forge/maker-squirrel": "^6.0.0-beta.63",
"@electron-forge/maker-zip": "^6.0.0-beta.63",
"electron": "18.0.4",
"electron-builder": "^23.3.3",
"tailwindcss": "^3.3.2",
"yarn": "^1.22.22"
}
}