@mcpjam/inspector 0.9.50 → 0.9.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mcpjam/inspector",
3
3
  "productName": "MCPJam Inspector",
4
- "version": "0.9.50",
4
+ "version": "0.9.52",
5
5
  "type": "module",
6
6
  "description": "MCPJam Inspector",
7
7
  "license": "Apache-2.0",
@@ -31,12 +31,14 @@
31
31
  "dev:convex": "convex dev",
32
32
  "dev:server": "cd server && npm run dev",
33
33
  "dev:client": "cd client && npm run dev",
34
- "build": "npm run build:client && npm run build:server",
34
+ "build": "npm run build:clean && npm run build:install && npm run build:client && npm run build:server",
35
+ "build:clean": "rm -rf dist && npm ci --legacy-peer-deps",
36
+ "build:install": "cd client && npm ci --legacy-peer-deps && cd ../server && npm ci --legacy-peer-deps",
35
37
  "build:client": "cd client && npm run build",
36
38
  "build:server": "cd server && npm run build",
37
39
  "start": "NODE_ENV=production node bin/start.js",
38
40
  "prettier-fix": "prettier --write .",
39
- "install:deps": "cd server && npm install && cd ../client && npm install",
41
+ "install:deps": "cd server && npm install --legacy-peer-deps && cd ../client && npm install --legacy-peer-deps",
40
42
  "docker:build": "docker build -t mcpjam/mcp-inspector:latest .",
41
43
  "docker:build:dev": "docker build -f Dockerfile.dev -t mcpjam/mcp-inspector:dev .",
42
44
  "docker:run": "docker run -p 3001:3001 mcpjam/mcp-inspector:latest",
@@ -94,7 +96,7 @@
94
96
  "input-otp": "^1.4.2",
95
97
  "lucide-react": "^0.525.0",
96
98
  "next-themes": "^0.4.6",
97
- "ollama-ai-provider-v2": "^1.3.1",
99
+ "ollama-ai-provider-v2": "1.3.1",
98
100
  "postcss": "^8.5.6",
99
101
  "posthog-js": "^1.260.3",
100
102
  "radix-ui": "^1.4.2",
@@ -112,8 +114,8 @@
112
114
  "tailwind-merge": "^3.3.1",
113
115
  "update-electron-app": "^3.1.1",
114
116
  "vaul": "^1.1.2",
115
- "zod": "^4.0.16",
116
- "@alcyone-labs/zod-to-json-schema": "^4.0.10",
117
+ "zod": "^3.25.76",
118
+ "zod-to-json-schema": "^3.24.6",
117
119
  "zustand": "^5.0.6"
118
120
  },
119
121
  "devDependencies": {
@@ -150,6 +152,7 @@
150
152
  },
151
153
  "overrides": {
152
154
  "tmp": "0.2.5",
153
- "jsondiffpatch": "0.7.2"
155
+ "jsondiffpatch": "0.7.2",
156
+ "zod": "^3.25.76"
154
157
  }
155
158
  }