@mcpjam/inspector 0.9.49 → 0.9.50-beta.1

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.49",
4
+ "version": "0.9.50-beta.1",
5
5
  "type": "module",
6
6
  "description": "MCPJam Inspector",
7
7
  "license": "Apache-2.0",
@@ -31,7 +31,9 @@
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",
@@ -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": {
@@ -147,5 +149,10 @@
147
149
  "typescript": "^5",
148
150
  "vite": "^7.1.4",
149
151
  "vitest": "^3.2.4"
152
+ },
153
+ "overrides": {
154
+ "tmp": "0.2.5",
155
+ "jsondiffpatch": "0.7.2",
156
+ "zod": "^3.25.76"
150
157
  }
151
158
  }