Release v0.2.10: Update package-lock.json and CI config
This commit is contained in:
@@ -9,17 +9,18 @@
|
||||
},
|
||||
"homepage": "https://echoesoftheash.com",
|
||||
"type": "module",
|
||||
"main": "electron/main.js",
|
||||
"main": "electron/main.cjs",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "tsc && vite build",
|
||||
"preview": "vite preview",
|
||||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
||||
"copy-assets": "rm -rf ./public/images && cp -r ../images ./public/",
|
||||
"electron:dev": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
|
||||
"electron:build": "npm run build && electron-builder",
|
||||
"electron:build:win": "npm run build && electron-builder --win",
|
||||
"electron:build:linux": "npm run build && electron-builder --linux",
|
||||
"electron:build:mac": "npm run build && electron-builder --mac"
|
||||
"electron:build": "npm run copy-assets && npm run build && electron-builder",
|
||||
"electron:build:win": "npm run copy-assets && npm run build && electron-builder --win",
|
||||
"electron:build:linux": "npm run copy-assets && npm run build && electron-builder --linux",
|
||||
"electron:build:mac": "npm run copy-assets && npm run build && electron-builder --mac"
|
||||
},
|
||||
"dependencies": {
|
||||
"react": "^18.2.0",
|
||||
@@ -27,7 +28,10 @@
|
||||
"react-router-dom": "^6.20.0",
|
||||
"axios": "^1.6.2",
|
||||
"zustand": "^4.4.7",
|
||||
"twemoji": "^14.0.2"
|
||||
"twemoji": "^14.0.2",
|
||||
"i18next": "^23.7.0",
|
||||
"react-i18next": "^14.0.0",
|
||||
"i18next-browser-languagedetector": "^7.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/react": "^18.2.43",
|
||||
@@ -52,6 +56,7 @@
|
||||
"build": {
|
||||
"appId": "com.echoesoftheash.game",
|
||||
"productName": "Echoes of the Ash",
|
||||
"afterPack": "./electron/afterPack.cjs",
|
||||
"directories": {
|
||||
"output": "dist-electron"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user