-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.34 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
{
"name": "zz-toolbox",
"private": true,
"version": "1.0.0",
"description": "中造工具箱 - 打印工具 + 组件库 + 演练场",
"main": "main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "electron .",
"electron:dev": "vite & timeout /t 3 /nobreak && electron .",
"pack": "electron-builder --dir",
"dist": "vite build && electron-builder --win --x64"
},
"volta": {
"node": "22.22.1",
"npm": "10.9.4"
},
"build": {
"appId": "com.zztoolbox.app",
"productName": "工具箱",
"directories": {
"output": "dist-electron"
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"package.json",
"src/plugins/**/*"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "build/logo.ico"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "build/logo.ico",
"uninstallerIcon": "build/logo.ico",
"installerHeaderIcon": "build/logo.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "工具箱"
}
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@vue-office/docx": "^1.6.3",
"@vue-office/excel": "^1.7.14",
"ant-design-vue": "^4.2.6",
"axios": "^1.8.4",
"circletype": "^2.3.0",
"dayjs": "^1.11.19",
"fabric": "^5.3.0",
"jsbarcode": "^3.11.6",
"lodash": "^4.17.21",
"pinia": "^3.0.4",
"qrcode": "^1.5.4",
"sharp": "^0.34.1",
"sm-crypto": "^0.3.13",
"stompjs": "^2.3.3",
"v-viewer": "^3.0.22",
"vue": "^3.5.25",
"vue-router": "^4.2.5",
"vxe-pc-ui": "4.11.10",
"vxe-table": "4.17.32",
"xe-utils": "^3.8.0",
"ws": "^8.18.1"
},
"devDependencies": {
"@vitejs/plugin-vue": "^6.0.3",
"electron": "^35.0.0",
"electron-builder": "^26.0.12",
"electron-packager": "^17.1.2",
"fast-glob": "^3.3.3",
"less": "^4.2.0",
"sass": "^1.69.0",
"unplugin-icons": "^22.5.0",
"unplugin-vue-components": "^30.0.0",
"vite": "^7.3.0",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-image-optimizer": "^2.0.3",
"vite-plugin-svg-icons": "^2.0.1"
}
}