-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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-vuevite-quick-start",
"productName": "Electron VueVite - Quick Start",
"version": "0.3.1",
"description": "Your awesome app description",
"main": "build/electron/main.js",
"author": {
"name": "Heliomar P. Marques",
"email": "[email protected]",
"url": "https://navto.me/heliomarpm"
},
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/heliomarpm/electron-vuevite-quick-start.git"
},
"bugs": {
"url": "https://github.com/heliomarpm/electron-vuevite-quick-start/issues"
},
"homepage": "https://github.com/heliomarpm/electron-vuevite-quick-start#readme",
"keywords": [
"electron",
"electron-quick-start",
"electron-app",
"electron-vue",
"electron-vite",
"electron-builder",
"vuejs",
"vue3",
"vitejs"
],
"scripts": {
"start": "npm run dev",
"dev": "vite dev",
"build": "vue-tsc && vite build && electron-builder",
"preview": "vite preview",
"deploy": "node ./node_modules/gh_deploy/index.mjs"
},
"dependencies": {
"vue": "^3.5.10"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"electron": "^32.1.2",
"electron-builder": "^25.0.5",
"electron-devtools-installer": "^3.2.0",
"gh_deploy": "github:heliomarpm/gh_deploy",
"open": "^10.1.0",
"sass": "^1.79.4",
"semver": "^7.6.3",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"vue-tsc": "^2.1.6"
}
}