-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "create-ts-mcp-server",
"version": "0.0.13",
"description": "CLI tool to create new MCP servers",
"type": "module",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc && shx chmod +x build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/Makoq/create-mcp-server.git"
},
"bugs": {
"url": "https://github.com/Makoq/create-mcp-server/issues"
},
"homepage": "https://github.com/Makoq/create-mcp-server#readme",
"bin": {
"create-mcp-server": "build/index.js"
},
"files": [
"build",
"template"
],
"keywords": ["mcp","modelcontextprotocol", "@modelcontextprotocol/sdk","mcp server","create mcp", "cli","typescript"],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "1.11.4",
"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",
"vitest": "^3.1.3"
}
}