feat[cli]: new admin cli

new admin cli for general admin task. only supports api key generation
for now
This commit is contained in:
2025-10-20 00:15:42 +00:00
parent 14e2ee1e28
commit a4544a3f09
8 changed files with 339 additions and 0 deletions

23
apps/cli/package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "@drexa/cli",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"drexa": "./index.ts"
},
"scripts": {
"cli": "bun run index.ts"
},
"dependencies": {
"@drexa/auth": "workspace:*",
"chalk": "^5.3.0",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}