Files
ln-bi/package.json
kkfluous 799d00b3da
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
fix: Tab切换用useTransition不阻塞UI、禁止缩放、版本升至1.1.0
- Tab切换包裹startTransition,图表重渲染不阻塞交互
- viewport加maximum-scale=1.0 user-scalable=no禁止缩放
- 版本号1.0.0 → 1.1.0

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-29 00:31:33 +08:00

38 lines
1018 B
JSON

{
"name": "ln-bi",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "concurrently -n server,client -c blue,green \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch src/server/index.ts",
"dev:client": "vite --port=3000 --host=0.0.0.0",
"build": "vite build",
"start": "node --import tsx src/server/index.ts",
"lint": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^1.13.0",
"dotenv": "^16.4.0",
"hono": "^4.7.0",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"mysql2": "^3.11.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recharts": "^3.8.1",
"tsx": "^4.21.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.14",
"@types/node": "^22.14.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^9.1.0",
"tailwindcss": "^4.1.14",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}