first commit

This commit is contained in:
Michal
2026-02-21 03:10:39 +00:00
commit d0aa0c5d63
174 changed files with 21169 additions and 0 deletions

26
src/cli/package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"name": "@mcpctl/cli",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"mcpctl": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"clean": "rimraf dist",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:run": "vitest run"
},
"dependencies": {
"commander": "^13.0.0",
"chalk": "^5.4.0",
"inquirer": "^12.0.0",
"js-yaml": "^4.1.0",
"@mcpctl/shared": "workspace:*",
"@mcpctl/db": "workspace:*"
}
}