-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "utools-plugin-template",
"private": true,
"main": "dist-electron/main/index.js",
"version": "0.0.0",
"type": "commonjs",
"author": "QC2168",
"description": "Easily create utools plugins",
"scripts": {
"dev": "vite",
"dev:electron": "vite --mode=electron",
"build": "vue-tsc && vite build",
"build:electron": "vue-tsc && vite build --mode=electron && electron-builder",
"preview": "vite preview"
},
"dependencies": {
"@icon-park/vue-next": "^1.4.2",
"@qc2168/vite-plugin-utools": "^1.3.1",
"element-plus": "^2.8.1",
"systeminformation": "^5.22.11",
"vconsole": "^3.15.1",
"vue": "^3.3.9",
"vue-router": "4.0.14"
},
"devDependencies": {
"@types/node": "^20.10.1",
"@types/nspell": "^2.1.6",
"@vitejs/plugin-vue": "^4.5.0",
"electron": "^27.1.0",
"electron-builder": "^24.9.1",
"less": "^4.2.0",
"prettier": "3.3.3",
"typescript": "^5.3.2",
"unplugin-auto-import": "^0.18.2",
"unplugin-vue-components": "^0.27.3",
"utools-api-types": "^4.0.0",
"vite": "^5.0.4",
"vite-plugin-electron": "^0.15.4",
"vue-tsc": "^1.8.27"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 9000
}
}