Files
AUTO-MAS-test/frontend/package.json

87 lines
2.2 KiB
JSON

{
"name": "frontend",
"private": true,
"version": "0.0.1",
"main": "dist-electron/main.js",
"scripts": {
"dev": "concurrently \"vite\" \"yarn watch:main\" \"yarn electron-dev\"",
"watch:main": "tsc --watch",
"electron-dev": "wait-on http://localhost:5173 && cross-env VITE_DEV_SERVER_URL=http://localhost:5173 electron .",
"build:main": "tsc",
"build": "vite build && yarn build:main && electron-builder",
"web": "vite"
},
"build": {
"asar": true,
"asarUnpack": [],
"extraMetadata": {
"env": "prod"
},
"appId": "xyz.automaa.frontend",
"productName": "AUTO_MAA",
"files": [
"dist",
"dist-electron",
"public",
"!src/assets/*"
],
"extraResources": [
{
"from": "src/assets",
"to": "assets",
"filter": []
}
],
"win": {
"requestedExecutionLevel": "requireAdministrator",
"target": "dir",
"icon": "public/AUTO_MAA.ico",
"artifactName": "AUTO_MAA.exe"
},
"mac": {
"icon": "public/AUTO_MAA.ico"
},
"linux": {
"icon": "public/AUTO_MAA.ico"
}
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"@types/adm-zip": "^0.5.7",
"adm-zip": "^0.5.16",
"ant-design-vue": "4.x",
"axios": "^1.11.0",
"dayjs": "^1.11.13",
"form-data": "^4.0.4",
"vue": "^3.5.17",
"vue-router": "4"
},
"devDependencies": {
"@types/node": "22.17.1",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.7.0",
"concurrently": "^9.2.0",
"cross-env": "^10.0.0",
"electron": "^37.2.5",
"electron-builder": "^26.0.12",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-vue": "^10.4.0",
"openapi-typescript-codegen": "^0.29.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"vite": "^7.0.4",
"vite-plugin-eslint": "^1.8.1",
"vue-eslint-parser": "^10.2.0",
"vue-tsc": "^2.2.12",
"wait-on": "^8.0.4"
},
"resolutions": {
"@types/node": "22.17.1"
},
"packageManager": "yarn@4.9.1+sha256.6ffc213b3ce0af5c92507977d9537ea3cc085caa52d1c3f08e94d613407fed19"
}