mirror of
https://github.com/Moe-Sakura/frontend.git
synced 2026-03-16 05:03:18 +08:00
* 在 `package.json` 中添加 ESLint 相关依赖,增强代码质量管理。 * 更新 `index.html` 中的样式,移除图片懒加载的默认透明度设置,避免显示问题。 * 在 `App.vue` 和其他组件中优化代码格式,提升可读性和一致性。 * 更新 `env.d.ts` 文件,添加类型注释以支持 Vue 组件的类型定义。 * 在 `StatsCorner.vue` 中引入过渡效果,提升用户体验。
37 lines
902 B
JSON
37 lines
902 B
JSON
{
|
|
"name": "searchgal-frontend",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.1",
|
|
"@tailwindcss/vite": "^4.1.17",
|
|
"@types/node": "^24.10.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.47.0",
|
|
"@typescript-eslint/parser": "^8.47.0",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-vue": "^10.5.1",
|
|
"tailwindcss": "^4.1.17",
|
|
"typescript": "^5.9.3",
|
|
"typescript-eslint": "^8.47.0",
|
|
"vite": "^7.0.3",
|
|
"vue-tsc": "^3.1.4"
|
|
},
|
|
"dependencies": {
|
|
"@fancyapps/ui": "^6.1.5",
|
|
"@fortawesome/fontawesome-free": "^7.1.0",
|
|
"artalk": "^2.9.1",
|
|
"pace-js": "^1.2.4",
|
|
"pinia": "^3.0.4",
|
|
"vue": "^3.5.24"
|
|
}
|
|
}
|