This commit is contained in:
24kycj
2026-05-28 08:41:10 +08:00
parent 22b17aed35
commit 505e72ce28
19 changed files with 589 additions and 134 deletions
+20 -1
View File
@@ -8,7 +8,8 @@
"node": "16.15.0"
},
"scripts": {
"dev": "electron-vite dev -- --skip-dll-init",
"dev": "electron-vite dev",
"dev:dll": "electron-vite dev -- --with-dll",
"build": "electron-vite build",
"preview": "electron-vite preview",
"typecheck": "vue-tsc --noEmit -p tsconfig.web.json",
@@ -39,12 +40,20 @@
{
"from": "resources/native",
"to": "native"
},
{
"from": "resources/cardsoon.config.json",
"to": "cardsoon.config.json"
}
],
"extraFiles": [
{
"from": "resources/native/CapSettings.json",
"to": "CapSettings.json"
},
{
"from": "resources/cardsoon.config.json",
"to": "cardsoon.config.json"
}
],
"win": {
@@ -52,6 +61,16 @@
"nsis"
],
"signAndEditExecutable": false
},
"mac": {
"target": [
"dmg"
]
},
"linux": {
"target": [
"AppImage"
]
}
},
"devDependencies": {