- 更新项目依赖 - 调整 next-env.d.ts 类型配置 - 更新全局样式 - 调整首页内容 - 添加 .playwright-mcp/ 到 gitignore Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
887 B
JSON
32 lines
887 B
JSON
{
|
|
"name": "seclusion",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"packageManager": "pnpm@9.15.2",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"build": "turbo run build",
|
|
"lint": "turbo run lint",
|
|
"test": "turbo run test",
|
|
"clean": "turbo run clean && rm -rf node_modules",
|
|
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
|
|
"db:generate": "turbo run db:generate",
|
|
"db:push": "turbo run db:push",
|
|
"db:migrate": "turbo run db:migrate",
|
|
"generate": "NODE_OPTIONS='--import tsx/esm' plop --plopfile plop/plopfile.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"plop": "^4.0.4",
|
|
"prettier": "^3.4.2",
|
|
"tsx": "^4.21.0",
|
|
"turbo": "^2.3.3",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0",
|
|
"pnpm": ">=9.0.0"
|
|
}
|
|
}
|