-
Notifications
You must be signed in to change notification settings - Fork 253
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.12 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.12 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "fastmcp",
"version": "1.0.0",
"main": "dist/FastMCP.js",
"scripts": {
"build": "tsup",
"lint": "prettier --check . && eslint . && tsc --noEmit && jsr publish --dry-run",
"test": "vitest run",
"format": "prettier --write . && eslint --fix ."
},
"bin": {
"fastmcp": "dist/bin/fastmcp.js"
},
"keywords": [
"MCP",
"SSE"
],
"type": "module",
"author": "Frank Fiegel <frank@glama.ai>",
"license": "MIT",
"description": "A TypeScript framework for building MCP servers.",
"module": "dist/FastMCP.js",
"types": "dist/FastMCP.d.ts",
"exports": {
".": {
"import": "./dist/FastMCP.js",
"types": "./dist/FastMCP.d.ts",
"require": "./dist/FastMCP.cjs"
},
"./auth": {
"import": "./dist/auth/index.js",
"types": "./dist/auth/index.d.ts",
"require": "./dist/auth/index.cjs"
},
"./edge": {
"import": "./dist/edge/index.js",
"types": "./dist/edge/index.d.ts",
"require": "./dist/edge/index.cjs"
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"@standard-schema/spec": "^1.0.0",
"execa": "^9.6.1",
"file-type": "^21.1.1",
"fuse.js": "^7.1.0",
"hono": "^4.11.5",
"mcp-proxy": "^6.4.0",
"strict-event-emitter-types": "^2.0.0",
"undici": "^7.16.0",
"uri-templates": "^0.2.0",
"xsschema": "0.4.0-beta.5",
"yargs": "^18.0.0",
"zod": "^4.1.13",
"zod-to-json-schema": "^3.25.0"
},
"peerDependencies": {
"jose": "^5.0.0"
},
"peerDependenciesMeta": {
"jose": {
"optional": true
}
},
"repository": {
"url": "https://github.com/punkpeye/fastmcp"
},
"homepage": "https://glama.ai/mcp",
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@sebbo2002/semantic-release-jsr"
]
},
"files": [
"dist"
],
"devDependencies": {
"@eslint/js": "^9.39.1",
"@modelcontextprotocol/inspector": "^0.16.8",
"@sebbo2002/semantic-release-jsr": "^3.1.0",
"@tsconfig/node24": "^24.0.3",
"@types/node": "^24.10.1",
"@types/uri-templates": "^0.1.34",
"@types/yargs": "^17.0.35",
"@valibot/to-json-schema": "^1.4.0",
"@wong2/mcp-cli": "^1.13.0",
"arktype": "^2.1.28",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-prettier": "^5.5.4",
"eventsource-client": "^1.2.0",
"get-port-please": "^3.2.0",
"jiti": "^2.6.1",
"jsr": "^0.13.5",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"valibot": "^1.2.0",
"vitest": "^4.0.15"
},
"tsup": {
"entry": [
"src/FastMCP.ts",
"src/bin/fastmcp.ts",
"src/auth/index.ts",
"src/edge/index.ts",
"src/examples/custom-routes.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"splitting": true,
"sourcemap": true,
"clean": true
}
}