- 后端新增批量创建二维码接口 POST /admin/chats/qrcodes/batch - 前端二维码管理页支持多图拖拽批量上传 - 注册 qrcode 图片压缩场景(maxSide=2560, quality=0.95) - 后端 normalizeScene 注册 qrcode scene - 增强 AuthImage 组件支持 el-image 大图预览(previewSrcList) - 修复 WithdrawalDetailDialog 提现凭证图片 401 问题 - 删除重复的 components/AuthImage.vue,统一使用共享组件 - 提交3剩余: 会话列表群类型图标、发布成功跳群、管理端路由等
53 lines
1.5 KiB
JSON
53 lines
1.5 KiB
JSON
{
|
|
"name": "hfb-sys-frontend",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vue-tsc -b --noEmit --watch --preserveWatchOutput & vite --host 0.0.0.0",
|
|
"build": "vue-tsc -b --noEmit && vite build",
|
|
"preview": "vite preview --host 0.0.0.0",
|
|
"typecheck": "vue-tsc -b --noEmit",
|
|
"lint": "eslint .",
|
|
"lint:strict": "eslint . --max-warnings=0",
|
|
"lint:fix": "eslint . --fix",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"check": "npm run format:check && npm run lint:strict && npm run typecheck",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest"
|
|
},
|
|
"dependencies": {
|
|
"@element-plus/icons-vue": "^2.3.1",
|
|
"axios": "^1.13.2",
|
|
"element-plus": "^2.11.9",
|
|
"marked": "^18.0.5",
|
|
"pinia": "^3.0.4",
|
|
"qrcode": "^1.5.4",
|
|
"vue": "^3.5.24",
|
|
"vue-router": "^4.6.3"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/node": "^24.10.1",
|
|
"@types/qrcode": "^1.5.6",
|
|
"@vant/auto-import-resolver": "^1.3.0",
|
|
"@vitejs/plugin-vue": "^6.0.2",
|
|
"@vue/tsconfig": "^0.8.1",
|
|
"eslint": "^10.4.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-vue": "^10.9.2",
|
|
"globals": "^17.6.0",
|
|
"jsdom": "^29.1.1",
|
|
"prettier": "^3.8.3",
|
|
"typescript": "~5.9.3",
|
|
"typescript-eslint": "^8.60.1",
|
|
"unplugin-auto-import": "^21.0.0",
|
|
"unplugin-vue-components": "^32.1.0",
|
|
"vant": "^4.9.24",
|
|
"vite": "^7.2.4",
|
|
"vitest": "^4.1.8",
|
|
"vue-tsc": "^3.1.5"
|
|
}
|
|
}
|