-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
194 lines (194 loc) · 5.65 KB
/
Copy pathpackage.json
File metadata and controls
194 lines (194 loc) · 5.65 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
{
"name": "@mcp-use/inspector",
"type": "module",
"version": "20.3.6",
"description": "MCP Inspector - A tool for inspecting and debugging MCP servers",
"author": "",
"license": "MIT",
"homepage": "https://github.com/mcp-use/mcp-use#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mcp-use/mcp-use.git",
"directory": "libraries/typescript/packages/inspector"
},
"bugs": {
"url": "https://github.com/mcp-use/mcp-use/issues"
},
"keywords": [
"mcp",
"inspector",
"debug",
"tools"
],
"exports": {
".": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
},
"./client/styles.css": {
"default": "./dist/client/styles.css"
}
},
"main": "./dist/server/index.js",
"types": "./dist/server/index.d.ts",
"bin": {
"mcp-inspect": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "rimraf node_modules/.vite && vite --strictPort",
"dev:client": "pnpm run dev",
"dev:server": "VITE_DEV=true tsx watch src/server/server.ts",
"dev:standalone": "tsx watch src/server/server.ts",
"clean": "rimraf dist",
"build": "pnpm run clean && pnpm run build:client-exports && pnpm run build:server && pnpm run build:app && pnpm run verify:package",
"build:app": "vite build --config vite.app.config.ts && node scripts/compress-app.mjs",
"watch:app": "vite build --watch --config vite.app.config.ts",
"preview:app": "vite preview --config vite.app.config.ts --host 127.0.0.1",
"serve:app": "pnpm build:app && pnpm preview:app",
"analyze:app": "ANALYZE=true vite build --config vite.app.config.ts",
"build:client-exports": "tsup --config tsup.client.ts && node scripts/copy-client-styles.mjs",
"build:server": "tsup --config tsup.server.ts",
"verify:package": "node scripts/verify-package.mjs",
"start": "node dist/cli.js --port 3000",
"preview": "vite preview",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:builtin": "node tests/e2e/scripts/run-test-matrix.mjs builtin",
"test:e2e:prod": "node tests/e2e/scripts/run-test-matrix.mjs prod",
"test:e2e:mix": "node tests/e2e/scripts/run-test-matrix.mjs mix",
"test:e2e:prod:ui": "TEST_MODE=production playwright test --ui",
"test:e2e:codegen": "playwright codegen http://localhost:3000/inspector",
"test:e2e:report": "playwright show-report",
"test:e2e:python": "node tests/e2e/scripts/run-python-e2e.mjs",
"test": "vitest run",
"test:unit": "vitest run",
"test:unit:watch": "vitest",
"test:e2e:tunnel": "node tests/e2e/scripts/run-tunnel-test.mjs",
"install:pnpm": "pnpm install",
"install:npm": "npm install",
"lint:npm": "npm run lint:fix",
"lint:pnpm": "pnpm lint:fix"
},
"engines": {
"node": ">=22.22.2"
},
"peerDependencies": {
"@base-ui/react": "^1.6.0",
"@mcp-use/agent": "^2.0.14",
"@mcp-use/client": "^2.0.1 || ^2.1.0 || ^2.1.1 || ^2.1.2 || ^2.1.3 || ^2.1.4 || ^2.1.5 || ^2.2.0 || ^2.2.1 || ^2.2.2 || ^2.2.3 || ^2.2.4 || ^2.2.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"express": "^4.21.2 || ^5.0.0",
"lucide-react": "^0.562.0",
"markdown-to-jsx": "^9.7.4",
"mcp-use": "^2.4.2",
"motion": "^12.34.2",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0",
"react-resizable-panels": "^4.6.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0"
},
"peerDependenciesMeta": {
"@base-ui/react": {
"optional": true
},
"@mcp-use/agent": {
"optional": true
},
"@mcp-use/client": {
"optional": true
},
"class-variance-authority": {
"optional": true
},
"clsx": {
"optional": true
},
"express": {
"optional": true
},
"lucide-react": {
"optional": true
},
"markdown-to-jsx": {
"optional": true
},
"mcp-use": {
"optional": true
},
"motion": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
},
"react-resizable-panels": {
"optional": true
},
"sonner": {
"optional": true
},
"tailwind-merge": {
"optional": true
}
},
"dependencies": {},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@base-ui/react": "^1.6.0",
"@hono/node-server": "^2.0.5",
"@mcp-use/agent": "workspace:*",
"@mcp-use/client": "workspace:*",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.2.0",
"@types/express": "^5.0.6",
"@vitejs/plugin-react": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"emulate": "0.5.0",
"eslint": "^9.39.2",
"express": "^5.2.1",
"hono": "^4.12.34",
"jsdom": "^27.0.0",
"lucide-react": "^0.562.0",
"markdown-to-jsx": "^9.7.4",
"motion": "^12.34.2",
"oauth2-mock-server": "^8.2.2",
"open": "^11.0.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^8.3.0",
"react-resizable-panels": "^4.6.4",
"rate-limiter-flexible": "^11.2.0",
"rollup-plugin-visualizer": "^6.0.3",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vite": "^8.0.16",
"vitest": "^4.1.0",
"wait-on": "^9.0.4",
"yaml": "^2.8.3",
"zod": "^4.2.0"
}
}