ba8224e81e
- 引入 shadcn/ui(base-nova 风格,Tailwind v4,14 个组件) - 新增 Admin 后台路由架构:/admin(总览)、/admin/bookmarks(管理) - 重写首页为纯展示书签导航(BookmarkCard + CategoryGrid) - 新增 Admin 侧边栏导航(AdminSidebar + SidebarProvider) - 书签管理页:双栏布局 + Dialog 表单 + DnD 排序 + Toast 通知 - 修复 IconPicker overflow 裁切(改用 Dialog portal) - 修复嵌套 button hydration 错误(base-ui render prop) - 删除旧组件(CategorySection/BookmarkItem/IconPicker)和旧路由 - 所有新依赖归入 root catalog - 更新 AGENTS.md 文档(目录结构、shadcn 模式、render prop 规范)
73 lines
2.5 KiB
JSON
73 lines
2.5 KiB
JSON
{
|
|
"name": "@furtherverse/server",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "bunx --bun vite build",
|
|
"compile": "bun compile.ts",
|
|
"compile:darwin": "bun run compile:darwin:arm64 && bun run compile:darwin:x64",
|
|
"compile:darwin:arm64": "bun compile.ts --target bun-darwin-arm64",
|
|
"compile:darwin:x64": "bun compile.ts --target bun-darwin-x64",
|
|
"compile:linux": "bun run compile:linux:x64 && bun run compile:linux:arm64",
|
|
"compile:linux:arm64": "bun compile.ts --target bun-linux-arm64",
|
|
"compile:linux:x64": "bun compile.ts --target bun-linux-x64",
|
|
"compile:windows": "bun run compile:windows:x64",
|
|
"compile:windows:x64": "bun compile.ts --target bun-windows-x64",
|
|
"db:generate": "drizzle-kit generate",
|
|
"db:migrate": "drizzle-kit migrate",
|
|
"db:push": "drizzle-kit push",
|
|
"db:studio": "drizzle-kit studio",
|
|
"dev": "bunx --bun vite dev",
|
|
"fix": "biome check --write",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@base-ui/react": "catalog:",
|
|
"@dnd-kit/dom": "catalog:",
|
|
"@dnd-kit/react": "catalog:",
|
|
"@fontsource-variable/geist": "catalog:",
|
|
"@orpc/client": "catalog:",
|
|
"@orpc/contract": "catalog:",
|
|
"@orpc/openapi": "catalog:",
|
|
"@orpc/server": "catalog:",
|
|
"@orpc/tanstack-query": "catalog:",
|
|
"@orpc/zod": "catalog:",
|
|
"@t3-oss/env-core": "catalog:",
|
|
"@tanstack/react-query": "catalog:",
|
|
"@tanstack/react-router": "catalog:",
|
|
"@tanstack/react-router-ssr-query": "catalog:",
|
|
"@tanstack/react-start": "catalog:",
|
|
"better-auth": "catalog:",
|
|
"class-variance-authority": "catalog:",
|
|
"clsx": "catalog:",
|
|
"drizzle-orm": "catalog:",
|
|
"lucide-react": "catalog:",
|
|
"next-themes": "catalog:",
|
|
"postgres": "catalog:",
|
|
"react": "catalog:",
|
|
"react-dom": "catalog:",
|
|
"sonner": "catalog:",
|
|
"tailwind-merge": "catalog:",
|
|
"tw-animate-css": "catalog:",
|
|
"uuid": "catalog:",
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@furtherverse/tsconfig": "workspace:*",
|
|
"@rolldown/plugin-babel": "catalog:",
|
|
"@tailwindcss/vite": "catalog:",
|
|
"@tanstack/devtools-vite": "catalog:",
|
|
"@tanstack/react-devtools": "catalog:",
|
|
"@tanstack/react-query-devtools": "catalog:",
|
|
"@tanstack/react-router-devtools": "catalog:",
|
|
"@types/bun": "catalog:",
|
|
"@vitejs/plugin-react": "catalog:",
|
|
"babel-plugin-react-compiler": "catalog:",
|
|
"drizzle-kit": "catalog:",
|
|
"nitro": "catalog:",
|
|
"tailwindcss": "catalog:",
|
|
"vite": "catalog:"
|
|
}
|
|
}
|