forked from punkpeye/fastmcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.28 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.28 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
{
"name": "fastmcp",
"version": "1.0.0",
"main": "dist/FastMCP.js",
"scripts": {
"build": "tsup",
"test": "vitest run && tsc && jsr publish --dry-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",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"@standard-schema/spec": "^1.0.0",
"execa": "^9.5.2",
"file-type": "^20.4.1",
"fuse.js": "^7.1.0",
"mcp-proxy": "^2.12.2",
"strict-event-emitter-types": "^2.0.0",
"undici": "^7.8.0",
"uri-templates": "^0.2.0",
"xsschema": "0.2.0-beta.3",
"yargs": "^17.7.2",
"zod": "^3.24.3",
"zod-to-json-schema": "^3.24.5"
},
"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"
]
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@sebbo2002/semantic-release-jsr": "^2.0.5",
"@tsconfig/node22": "^22.0.1",
"@types/node": "^22.14.1",
"@types/uri-templates": "^0.1.34",
"@types/yargs": "^17.0.33",
"@valibot/to-json-schema": "^1.0.0",
"arktype": "^2.1.20",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-perfectionist": "^4.12.0",
"eslint-plugin-prettier": "^5.2.6",
"eventsource-client": "^1.1.3",
"get-port-please": "^3.1.2",
"jiti": "^2.4.2",
"jsr": "^0.13.4",
"prettier": "^3.5.3",
"semantic-release": "^24.2.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"valibot": "^1.0.0",
"vitest": "^3.1.2"
},
"tsup": {
"entry": [
"src/FastMCP.ts",
"src/bin/fastmcp.ts"
],
"format": [
"esm"
],
"dts": true,
"splitting": true,
"sourcemap": true,
"clean": true
}
}