-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.46 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@getmcpm/cli",
"version": "0.3.2",
"mcpName": "io.github.getmcpm/cli",
"description": "MCP package manager — search, install, and audit MCP servers across Claude Desktop, Cursor, VS Code, and Windsurf",
"type": "module",
"bin": {
"mcpm": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"package-manager",
"cli",
"ai",
"security",
"claude",
"cursor",
"vscode"
],
"author": "",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/getmcpm/cli"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"@modelcontextprotocol/sdk": "^1.28.0",
"chalk": "^5.4.0",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"ora": "^9.3.0",
"semver": "^7.7.4",
"yaml": "^2.8.3",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/semver": "^7.7.1",
"@vitest/coverage-v8": "^3.0.0",
"tsup": "^8.4.0",
"typescript": "^5.9.0",
"vitest": "^3.0.0"
}
}