chore: initialize monorepo tooling

This commit is contained in:
2026-09-18 15:00:48 +08:00
parent e28140a0b3
commit 55b2b091c2
42 changed files with 1858 additions and 18 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "personal-brand-miniapp",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.18.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm format:check && pnpm lint && pnpm typecheck",
"clean": "turbo run clean && rimraf node_modules .turbo"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"turbo": "^2.3.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}