feat: add devflow doctor cli

This commit is contained in:
chungyeong
2026-05-09 22:41:38 +09:00
parent 38f3472d9c
commit 42f0fb193d
17 changed files with 931 additions and 8 deletions

View File

@@ -12,7 +12,8 @@
"build": "tsc -b",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx scripts/migrate.ts",
"typecheck": "tsc -b --noEmit",
"devflow": "tsx apps/cli/src/index.ts",
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
@@ -33,8 +34,10 @@
"vitest": "2.1.8"
},
"dependencies": {
"commander": "12.1.0",
"dotenv": "17.4.2",
"drizzle-orm": "0.45.2",
"pg": "8.20.0"
"pg": "8.20.0",
"zod": "3.24.1"
}
}