-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
37 lines (37 loc) · 946 Bytes
/
package.json
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
{
"name": "@modelcontextprotocol/create-server",
"version": "0.3.1",
"description": "CLI tool to create new MCP servers",
"license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)",
"homepage": "https://modelcontextprotocol.io",
"bugs": "https://github.com/modelcontextprotocol/create-typescript-server/issues",
"type": "module",
"bin": {
"create-mcp-server": "build/index.js"
},
"files": [
"build",
"template"
],
"scripts": {
"build": "tsc && shx chmod +x build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ejs": "^3.1.9",
"inquirer": "^9.2.15",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.24",
"shx": "^0.3.4",
"typescript": "^5.3.3"
}
}