Files
mcpctl/src/cli/package.json

27 lines
553 B
JSON
Raw Normal View History

2026-02-21 03:10:39 +00:00
{
"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:*"
}
}