-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 959 Bytes
/
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
{
"name": "utools-plugin-template",
"type": "module",
"private": true,
"main": "dist-electron/main/index.js",
"version": "0.0.0",
"author": "QC2168",
"description": "Easily create utools plugins",
"scripts": {
"dev": "vite",
"dev:electron": "vite --mode=electron",
"build": "vue-tsc && vite build && node ./scripts/build.js",
"build:electron": "vue-tsc && vite build --mode=electron && electron-builder",
"preview": "vite preview"
},
"dependencies": {
"@qc2168/vite-plugin-utools": "^1.6.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@types/node": "^20.17.9",
"@vitejs/plugin-vue": "^5.2.1",
"electron": "^31.7.6",
"electron-builder": "^25.1.8",
"typescript": "^5.6.3",
"utools-api-types": "^5.2.0",
"vite": "^6.0.3",
"vite-plugin-electron": "^0.29.0",
"vue-tsc": "^2.1.10"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 9000
}
}