Usage: pnpm add-spoke <key> [--name X] [--description Y] Generates per-spoke prisma schema + db client + admin-sdk stub, patches package.json (prisma generate chain) and prisma/seed.ts. Prints SQL + Coolify env checklist for finishing the wiring.
19 lines
398 B
JSON
19 lines
398 B
JSON
{
|
|
"name": "super-panel",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"packageManager": "pnpm@9.12.0",
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"lint": "turbo run lint",
|
|
"typecheck": "turbo run typecheck",
|
|
"add-spoke": "tsx scripts/add-spoke.ts"
|
|
},
|
|
"devDependencies": {
|
|
"tsx": "^4.19.2",
|
|
"turbo": "^2.5.0",
|
|
"typescript": "^5.6.0"
|
|
}
|
|
}
|