-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.49 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.49 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
96
97
98
99
100
101
{
"name": "electron-windowshell",
"icon": "./src/public/favicon.ico",
"product_name": "Electron WindowShell",
"version": "0.9.4",
"description": "Electron + Vite + Vue3 + Pinia + Typescript boilerplate project with built-in Vuetify UI, and other custom components.",
"main": "dist/electron/main.js",
"author": "QuadVector",
"copyright": "Copyright © QuadVector Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/"
},
"homepage": "https://github.com/",
"private": false,
"keywords": [
"Electron",
"electron-template",
"vue",
"vite",
"typescript",
"fluent"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit --allowJs && vite build",
"release": "npm run build && electron-builder",
"update-core": "node scripts/updateCore.js"
},
"build": {
"appId": "electron-windowshell",
"asar": true,
"directories": {
"buildResources": "assets",
"output": "release"
},
"files": [
"dist",
"!node_modules/**/*"
],
"asarUnpack": [],
"beforeBuild": null,
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "./src/public/favicon.ico",
"artifactName": "${productName}_${version}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"artifactName": "${productName}_${version}_setup.${ext}",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "./src/public/favicon.ico",
"uninstallerIcon": "./src/public/favicon.ico",
"license": "LICENSE",
"deleteAppDataOnUninstall": true,
"allowElevation": true,
"runAfterFinish": false,
"installerLanguages": "en_US"
},
"afterPack": "./scripts/removeLocales.js"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 3344
},
"devDependencies": {
"@mdi/font": "^7.4.47",
"iconv-lite": "^0.6.3",
"@simolation/vue-hotkey": "^2.0.1",
"vue-router": "^4.3.0",
"vue-tinykeys": "^0.2.1",
"@types/webfontloader": "^1.0.0",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/compiler-sfc": "^3.4.21",
"electron": "^41.0.2",
"electron-builder": "^26.6.0",
"focus-visible": "^5.2.1",
"pinia": "^2.1.6",
"typedoc": "^0.28.16",
"typedoc-plugin-vue": "^1.5.1",
"typescript": "^5.3.3",
"v-contextmenu": "^3.0.0",
"vite": "^7.3.1",
"vite-plugin-electron": "^0.28.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-vuetify": "^2.1.3",
"vue": "^3.4.1",
"vue-tsc": "^2.1.2",
"vuetify": "^3.0.0-beta.5"
}
}