- 使用 BaseDialog 替代旧版 Modal 组件 - 添加平滑过渡动画和更好的可访问性支持 - 新增 ExportProgressDialog 导出进度弹窗 - 优化所有账号管理和使用记录相关弹窗 - 更新国际化文案,改进用户交互体验 - 精简依赖,减少 package.json 体积
38 lines
932 B
JSON
38 lines
932 B
JSON
{
|
|
"name": "sub2api-frontend",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
|
|
"typecheck": "vue-tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@vueuse/core": "^10.7.0",
|
|
"axios": "^1.6.2",
|
|
"chart.js": "^4.4.1",
|
|
"file-saver": "^2.0.5",
|
|
"pinia": "^2.1.7",
|
|
"vue": "^3.4.0",
|
|
"vue-chartjs": "^5.3.0",
|
|
"vue-i18n": "^9.14.5",
|
|
"vue-router": "^4.2.5",
|
|
"xlsx": "^0.18.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/file-saver": "^2.0.7",
|
|
"@types/node": "^20.10.5",
|
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
"autoprefixer": "^10.4.16",
|
|
"postcss": "^8.4.32",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "~5.6.0",
|
|
"vite": "^5.0.10",
|
|
"vite-plugin-checker": "^0.9.1",
|
|
"vue-tsc": "^2.2.0"
|
|
}
|
|
}
|