chore: starter template

This commit is contained in:
e2e
2026-07-10 22:25:02 +02:00
commit 33da14f99e
157 changed files with 6462 additions and 0 deletions

45
package.json Normal file
View File

@@ -0,0 +1,45 @@
{
"name": "@project/root",
"version": "0.0.1",
"private": true,
"packageManager": "bun@1.3.14",
"workspaces": [
"apps/*",
"packages/*",
"design/*",
"e2e",
"!apps/_app_template_"
],
"scripts": {
"prebuild": "cd packages/functions && pikku all",
"dev": "bun run --filter '@project/app' dev",
"tsc": "bun run --filter '*' tsc",
"lint": "oxlint --config ../.oxlintrc.json apps packages",
"format": "oxfmt --config ../.oxfmtrc.json apps packages",
"format:check": "oxfmt --check --config ../.oxfmtrc.json apps packages"
},
"dependencies": {
"@pikku/addon-console": "^0.12.23",
"@pikku/ai-vercel": "^0.12.7",
"@pikku/assistant-ui": "^0.12.7",
"@pikku/better-auth": "^0.12.16",
"@pikku/core": "^0.12.57",
"@pikku/cucumber": "^0.12.11",
"@pikku/deploy-standalone": "^0.12.7",
"@pikku/fetch": "^0.12.6",
"@pikku/kysely": "^0.13.0",
"@pikku/kysely-node-sqlite": "^0.12.3",
"@pikku/kysely-sqlite": "^0.12.7",
"@pikku/mantine": "^0.12.6",
"@pikku/react": "^0.12.5",
"@pikku/schema-cfworker": "^0.12.4"
},
"devDependencies": {
"@pikku/cli": "^0.12.76",
"oxfmt": "^0.53.0",
"oxlint": "^1.71.0"
},
"overrides": {
"@pikku/core": "0.12.57"
}
}