-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.93 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.93 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
{
"name": "mcp-handler",
"version": "1.1.0",
"description": "Vercel MCP Adapter for Next.js and other frameworks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"bin": {
"create-mcp-route": "./dist/cli/index.js",
"mcp-handler": "./dist/cli/index.js",
"@vercel/mcp-adapter": "./dist/cli/index.js"
},
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.cjs"
},
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./next": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.cjs"
},
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/mcp-handler.git"
},
"bugs": {
"url": "https://github.com/vercel/mcp-handler/issues"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest watch",
"version-packages": "changeset version",
"changeset": "changeset",
"release": "pnpm build && changeset publish"
},
"keywords": [
"mcp",
"vercel",
"next.js",
"ai"
],
"author": "Vercel",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"redis": "^4.6.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/node": "^22.15.8",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.1",
"zod": "^3.25.50"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": "1.26.0",
"next": ">=13.0.0"
},
"peerDependenciesMeta": {
"@modelcontextprotocol/sdk": {
"optional": false
},
"next": {
"optional": true
}
},
"packageManager": "pnpm@9.4.0",
"publishConfig": {
"access": "public",
"provenance": true
}
}