93 lines
2.5 KiB
JSON
93 lines
2.5 KiB
JSON
{
|
|
"name": "echoes-of-the-ashes-pwa",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"description": "Echoes of the Ash - A dark fantasy RPG adventure",
|
|
"author": {
|
|
"name": "Echoes of the Ash Team",
|
|
"email": "contact@echoesoftheash.com"
|
|
},
|
|
"homepage": "https://echoesoftheash.com",
|
|
"type": "module",
|
|
"main": "electron/main.js",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"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"
|
|
},
|
|
"dependencies": {
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.20.0",
|
|
"axios": "^1.6.2",
|
|
"zustand": "^4.4.7",
|
|
"twemoji": "^14.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.43",
|
|
"@types/react-dom": "^18.2.17",
|
|
"@types/twemoji": "^13.1.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
"@typescript-eslint/parser": "^6.14.0",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"eslint": "^8.55.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.5",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.0.8",
|
|
"vite-plugin-pwa": "^0.17.4",
|
|
"workbox-window": "^7.0.0",
|
|
"electron": "^28.0.0",
|
|
"electron-builder": "^24.9.1",
|
|
"concurrently": "^8.2.2",
|
|
"wait-on": "^7.2.0",
|
|
"steamworks.js": "^0.3.0"
|
|
},
|
|
"build": {
|
|
"appId": "com.echoesoftheash.game",
|
|
"productName": "Echoes of the Ash",
|
|
"directories": {
|
|
"output": "dist-electron"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"electron/**/*",
|
|
"public/steam_appid.txt"
|
|
],
|
|
"extraResources": [
|
|
{
|
|
"from": "node_modules/steamworks.js/lib",
|
|
"to": "steamworks",
|
|
"filter": [
|
|
"**/*"
|
|
]
|
|
}
|
|
],
|
|
"win": {
|
|
"target": [
|
|
"nsis",
|
|
"portable"
|
|
],
|
|
"icon": "electron/icons/icon.png"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
"AppImage",
|
|
"deb"
|
|
],
|
|
"category": "Game",
|
|
"icon": "electron/icons/icon.png",
|
|
"maintainer": "Echoes of the Ash Team <contact@echoesoftheash.com>"
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.games",
|
|
"icon": "electron/icons/icon.png"
|
|
}
|
|
}
|
|
} |