-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.75 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
68
69
70
71
72
73
{
"name": "@mcpdotdirect/template-mcp-server",
"module": "src/index.ts",
"type": "module",
"version": "1.0.0",
"description": "CLI tool to create a new MCP (Model Context Protocol) server project",
"private": false,
"main": "build/index.js",
"bin": {
"create-mcp-server": "./bin/create-mcp-server.js"
},
"files": [
"bin",
"src/",
"build/",
".gitignore",
"tsconfig.json",
"README.md",
"LICENSE"
],
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir build --target node",
"build:http": "bun build src/server/http-server.ts --outdir build --target node",
"dev": "bun --watch src/index.ts",
"start:http": "bun run src/server/http-server.ts",
"dev:http": "bun --watch src/server/http-server.ts",
"prepublishOnly": "bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcpdotdirect/template-mcp-server.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"mcp",
"model-context-protocol",
"template",
"server",
"ai",
"agent",
"create",
"generator",
"starter",
"boilerplate"
],
"author": "mcpdotdirect",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcpdotdirect/template-mcp-server/issues"
},
"homepage": "https://github.com/mcpdotdirect/template-mcp-server#readme",
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^20.17.24"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"zod": "^3.24.2"
},
"engines": {
"node": ">=18.0.0"
}
}