-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.33 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.33 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
{
"name": "next-devtools-mcp",
"version": "0.3.10",
"type": "module",
"description": "Next.js development tools MCP server with stdio transport",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vercel/next-devtools-mcp.git"
},
"bin": {
"next-devtools-mcp": "./dist/index.js"
},
"main": "dist/index.js",
"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",
"start": "node dist/index.js",
"test": "vitest run --exclude 'test/e2e/**'",
"test:e2e": "vitest run test/e2e",
"eval": "vitest run test/e2e/upgrade.test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.24.3",
"find-process": "2.0.0",
"pid-port": "2.0.0",
"undici": "^7.18.2",
"zod": "3.25.76"
},
"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"
}