forked from SchneeHertz/exhentai-manga-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.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
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
{
"name": "exhentai-manga-manager",
"private": true,
"version": "1.6.1",
"author": "SchneeHertz",
"description": "Tag-based management, reading manga downloaded from ExHentai",
"repository": {
"type": "git",
"url": "https://github.com/SchneeHertz/exhentai-manga-manager.git"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "chcp 65001 && electron .",
"pack": "electron-builder --dir",
"dist": "auto-changelog && vite build && electron-builder"
},
"build": {
"appId": "electron.e-hentai.tagger",
"directories": {
"output": "out"
},
"files": [
"dist/index.html",
"dist/assets/*",
"dist/icon.png",
"fileLoader/*",
"modules/*",
"index.js",
"preload.js"
],
"extraResources": [
{
"from": "resources/extraResources",
"to": "extraResources",
"filter": [
"**/*"
]
}
],
"win": {
"target": [
"nsis",
"zip"
],
"icon": "public/icon.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"dependencies": {
"adm-zip": "^0.5.9",
"electron-window-state": "^5.0.3",
"express": "^4.19.2",
"glob": "^10.3.3",
"https-proxy-agent": "^7.0.2",
"iconv-lite": "^0.6.3",
"lodash": "^4.17.21",
"nanoid": "^3.3.2",
"node-fetch": "^2.7.0",
"sequelize": "^6.32.1",
"sharp": "^0.32.6",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@imengyu/vue3-context-menu": "^1.3.3",
"@vicons/carbon": "^0.12.0",
"@vicons/fluent": "^0.12.0",
"@vicons/ionicons4": "^0.12.0",
"@vicons/material": "^0.12.0",
"@vitejs/plugin-vue": "^2.3.0",
"auto-changelog": "^2.4.0",
"chart.js": "^4.4.3",
"electron": "^26.2.3",
"electron-builder": "^24.6.4",
"element-plus": "^2.8.1",
"eslint": "^9.9.0",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.9.0",
"he": "^1.2.0",
"linkifyjs": "^3.0.5",
"stylus": "^0.57.0",
"vite": "^2.9.0",
"vue": "^3.3.8",
"vue-i18n": "^9.2.2",
"vuedraggable": "^4.1.0"
}
}