@mcpcloud/cli 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +3 -15
  2. package/dist/index.js +27529 -4551
  3. package/package.json +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcpcloud/cli",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "The official CLI for MCPCloud — manage projects, servers, skills, and API keys from the terminal",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,7 +14,8 @@
14
14
  "package.json"
15
15
  ],
16
16
  "scripts": {
17
- "build": "bun build src/index.ts --outdir dist --format esm --target node",
17
+ "build": "bun run build:inspector && bun build src/index.ts --outdir dist --format esm --target node",
18
+ "build:inspector": "bun scripts/build-inspector.ts",
18
19
  "build:bin": "bun build --compile --target=bun src/index.ts --outfile dist/mcpsh-bin",
19
20
  "dev": "bun src/index.ts",
20
21
  "test": "vitest run",
@@ -25,6 +26,7 @@
25
26
  "docs:generate": "bun scripts/generate-docs.ts"
26
27
  },
27
28
  "dependencies": {
29
+ "@clack/prompts": "^1.4.0",
28
30
  "commander": "^12.1.0"
29
31
  },
30
32
  "devDependencies": {