-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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": "electron-vite-vue3-tools",
"version": "0.0.36",
"main": "dist-electron/main.js",
"author": "aehyok",
"license": "MIT",
"private": true,
"description": "AI小工具:视频转图文",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start-win": "chcp 65001 && vite",
"build-win": "chcp 65001 && vite build --mode production && electron-builder",
"start-mac": "vite",
"python-win": "cd python/RemoveDuplicateImages && pyinstaller --onefile main.py -y --distpath ../../command/win -n RemoveDuplicateImages.exe",
"python-mac": "cd python/RemoveDuplicateImages && pyinstaller --onefile main.py -y --distpath ../../command/mac -n RemoveDuplicateImages",
"build": "vite build --mode production && electron-builder"
},
"dependencies": {
"@imengyu/vue3-context-menu": "^1.4.0",
"@lucide/lab": "^0.1.2",
"@vicons/ionicons5": "^0.12.0",
"cheerio": "^1.0.0-rc.12",
"date-fns": "^2.30.0",
"electron-log": "^5.2.0",
"fs-extra": "^11.2.0",
"lucide-vue-next": "^0.395.0",
"md-editor-v3": "^4.13.3",
"naive-ui": "^2.38.1",
"openai": "^4.56.0",
"sharp": "^0.33.4",
"sqlite3": "5.1.6",
"tinify": "^1.7.1",
"uuid": "^9.0.1",
"vue": "^3.4.21",
"vue-router": "4",
"xgplayer": "^3.0.19"
},
"devDependencies": {
"@types/node": "^20.5.7",
"@vitejs/plugin-vue": "^4.3.4",
"@vueuse/core": "^10.9.0",
"axios": "^1.6.8",
"electron": "^30.0.1",
"electron-builder": "^24.13.3",
"lodash": "^4.17.21",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-electron": "^0.14.0",
"vite-plugin-electron-renderer": "^0.14.5"
},
"overrides": {
"node-gyp": "^10.0.1"
},
"engines": {
"node": "20.11.0",
"npm": "10.2.4"
}
}