-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.3 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.3 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
{
"name": "fern-mcp-server",
"description": "Model Context Protocol (MCP) server for the Fern API.",
"version": "0.1.0",
"bin": "dist/index.js",
"files": [
"dist",
"api"
],
"scripts": {
"start": "next start",
"dev": "concurrently \"next dev\" \"npm run inspector\"",
"inspector": "npx @modelcontextprotocol/inspector@latest http://localhost:3000",
"build": "next build",
"dev:local": "concurrently \"npm run build:local:watch\" \"npm run inspector:local\"",
"inspector:local": "npx @modelcontextprotocol/inspector@latest -- nodemon -q --watch dist dist/index.js",
"build:local": "tsup src/index.ts --dts --clean --tsconfig tsconfig.mcp.json",
"build:local:watch": "tsup src/index.ts --dts --watch --tsconfig tsconfig.mcp.json",
"test": "jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"mcp-handler": "^1.0.3",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.13",
"@types/react": "19.2.2",
"@vercel/node": "^3.2.29",
"concurrently": "^9.1.2",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"ts-jest": "^29.3.1",
"tsup": "^8.4.0",
"typescript": "^5.8.2",
"vercel": "^39.2.8"
}
}