21 lines
452 B
JSON
21 lines
452 B
JSON
{
|
|
"name": "@devflow/cli",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"bin": {
|
|
"devflow": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format esm --clean",
|
|
"typecheck": "tsc -p ../../tsconfig.typecheck.json --noEmit",
|
|
"test": "cd ../.. && vitest run --project apps/cli"
|
|
},
|
|
"dependencies": {
|
|
"commander": "12.1.0",
|
|
"dotenv": "17.4.2",
|
|
"pg": "8.20.0",
|
|
"zod": "3.24.1"
|
|
}
|
|
}
|