This repository was archived by the owner on May 21, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.49 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@mcp-use/inspector",
"type": "module",
"version": "0.3.10",
"description": "MCP Inspector - A tool for inspecting and debugging MCP servers",
"author": "",
"license": "MIT",
"keywords": [
"mcp",
"inspector",
"debug",
"tools"
],
"exports": {
".": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
}
},
"main": "./dist/server/index.js",
"types": "./dist/server/index.d.ts",
"bin": {
"mcp-inspect": "./dist/cli/inspect.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite --port 3000",
"dev:server": "VITE_DEV=true tsx watch src/server/server.ts",
"dev:standalone": "tsx watch src/server/server.ts",
"build": "npm run build:client && npm run build:server && npm run build:cli",
"build:client": "vite build",
"build:server": "tsup src/server/*.ts --format esm --out-dir dist/server && tsc -p tsconfig.server.json --emitDeclarationOnly --declaration",
"build:cli": "tsup src/cli/inspect.ts --format cjs --out-dir dist/cli",
"start": "node dist/server/server.js",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"install:yarn": "yarn install",
"install:pnpm": "pnpm install",
"install:npm": "npm install",
"lint:yarn": "yarn eslint . --fix",
"lint:npm": "npm run lint:fix",
"lint:pnpm": "pnpm lint:fix"
},
"peerDependencies": {
"@langchain/anthropic": "^0.3.26",
"@langchain/core": "^0.3.72",
"@langchain/google-genai": "^1.0.0",
"@langchain/openai": "^0.6.9",
"express": "^4.21.2"
},
"dependencies": {
"@hono/node-server": "^1.19.5",
"@mcp-ui/client": "^5.12.1",
"@modelcontextprotocol/sdk": "1.20.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/cli": "^4.1.14",
"@tailwindcss/vite": "^4.1.14",
"@types/react-syntax-highlighter": "^15.5.13",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"framer-motion": "^12.23.22",
"hono": "^4.0.0",
"lucide-react": "^0.545.0",
"mcp-use": "workspace:*",
"motion": "^12.23.22",
"next-themes": "^0.4.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-resizable-panels": "^3.0.6",
"react-router-dom": "^7.9.3",
"react-syntax-highlighter": "^15.6.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"vite-express": "^0.21.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@eslint-react/eslint-plugin": "^1.38.4",
"@langchain/anthropic": "^0.3.26",
"@langchain/core": "^0.3.72",
"@langchain/google-genai": "^1.0.0",
"@langchain/openai": "^0.6.9",
"@radix-ui/react-slot": "^1.2.3",
"@types/express": "^4.17.0",
"@types/node": "^24.7.0",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^9.2.1",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.0",
"express": "^4.21.2",
"tailwindcss": "^4.1.14",
"tsx": "^4.6.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^7.1.9"
}
}