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

@@ -0,0 +1,18 @@
{
"name": "@devflow/core",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"typecheck": "tsc -b --noEmit",
"test": "vitest run"
},
"dependencies": {
"dotenv": "17.4.2",
"zod": "3.24.1"
}
}