-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
80 lines (80 loc) · 2.14 KB
/
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
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
74
75
76
77
78
79
80
{
"name": "@mcpdotdirect/create-mcp-server",
"module": "src/index.ts",
"type": "module",
"version": "2.0.1",
"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 --outfile http-server.js",
"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 && bun run build:http",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"release": "npm publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:latest": "conventional-changelog -p angular -r 1 > RELEASE_NOTES.md"
},
"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/node": "^20.17.24",
"conventional-changelog-cli": "^5.0.0"
},
"peerDependencies": {
"@valibot/to-json-schema": "^1.0.0",
"effect": "^3.14.4",
"typescript": "^5.8.2"
},
"dependencies": {
"cors": "^2.8.5",
"fastmcp": "^1.21.0",
"zod": "^3.24.2"
},
"engines": {
"node": ">=18.0.0"
}
}