forked from vercel/next-devtools-mcp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.01 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.01 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
{
"name": "next-devtools-mcp",
"version": "0.2.1",
"description": "Next.js development tools MCP server with stdio transport",
"bin": {
"next-devtools-mcp": "./dist/index.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js"
},
"files": [
"dist"
],
"mcpName": "io.github.vercel/next-devtools-mcp",
"scripts": {
"dev": "tsc --watch",
"copy-resources": "node scripts/copy-resources.js",
"build": "tsc && npm run copy-resources",
"prepublishOnly": "pnpm run clean && pnpm run build",
"clean": "rm -rf dist",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.20.0",
"ai": "^5.0.45",
"zod": "^4.1.9"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.15",
"@types/node": "^24.7.2",
"dotenv": "^17.2.3",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@9.15.9"
}