forked from modelcontextprotocol/create-typescript-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 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-mcp-tools",
"version": "1.0.1",
"description": "CLI tool to create new MCP servers",
"license": "MIT",
"author": "Hidetaka Okamoto",
"homepage": "https://github.com/hideokamoto/create-typescript-server",
"bugs": "https://github.com/hideokamoto/create-typescript-server/issues",
"type": "module",
"bin": {
"create-mcp-tools": "build/index.js"
},
"files": [
"build",
"template"
],
"scripts": {
"build": "tsc && shx chmod +x build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "echo \"No tests specified\" && exit 0",
"release": "np"
},
"np": {
"yarn": false,
"tests": false,
"cleanup": true,
"branch": "main"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.22.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": "^22.10.0",
"np": "^10.2.0",
"shx": "^0.3.4",
"typescript": "^5.7.2"
}
}