mirror of
https://github.com/Moe-Sakura/frontend.git
synced 2026-03-30 07:39:45 +08:00
* 移除所有 Material Web Components 和 GSAP 相关依赖,简化项目结构。 * 更新 `index.html`,添加 favicon 和优化 PWA 相关设置。 * 重构多个组件(如 `CommentsModal.vue`, `SearchHeader.vue`, `SearchResults.vue`)以使用 Tailwind CSS,提升样式一致性和用户体验。 * 移除不必要的调试日志,优化代码清理。 * 更新 `package.json` 和 `pnpm-lock.yaml`,引入新的依赖以支持 Tailwind CSS 和 Font Awesome。 * 简化 Service Worker,优化缓存策略。
29 lines
623 B
JSON
29 lines
623 B
JSON
{
|
|
"name": "searchgal-frontend",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.1.17",
|
|
"@types/node": "^24.10.1",
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"tailwindcss": "^4.1.17",
|
|
"typescript": "^5.9.3",
|
|
"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"
|
|
}
|
|
}
|