-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 879 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 879 Bytes
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
{
"name": "mcpm",
"version": "0.0.1",
"type": "module",
"bin": {
"mcpm": "./build/index.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc && chmod 755 build/index.js",
"run": "bun src/index.ts",
"dev": "npx @modelcontextprotocol/inspector pnpm run",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage --coverage-reporter=text"
},
"files": [
"build"
],
"keywords": [],
"author": "Brendan Mullins <megamaaaan@gmail.com>",
"license": "MIT",
"description": "Model Context Protocol MCP manager",
"dependencies": {
"@inquirer/prompts": "^7.4.1",
"@modelcontextprotocol/sdk": "^1.10.1",
"commander": "^13.1.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^22.14.1",
"typescript": "^5.8.3"
}
}