@mcpjam/inspector 1.0.4 → 1.0.6
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/dist/client/assets/{index-rt9IYzHW.css → index-BM_pWNid.css} +1 -1
- package/dist/client/assets/index-BPqF-2di.js +1875 -0
- package/dist/client/index.html +2 -2
- package/dist/server/index.js +9216 -26564
- package/dist/server/index.js.map +1 -1
- package/package.json +7 -6
- package/dist/client/assets/index-z6Wi9yzd.js +0 -1874
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcpjam/inspector",
|
|
3
3
|
"productName": "MCPJam Inspector",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "MCPJam Inspector",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,15 +32,16 @@
|
|
|
32
32
|
"dev:convex": "convex dev",
|
|
33
33
|
"dev:server": "cd server && npm run dev",
|
|
34
34
|
"dev:client": "cd client && npm run dev",
|
|
35
|
-
"build": "npm run build:clean && npm run build:install && npm run build:client && npm run build:server",
|
|
36
|
-
"build:clean": "rm -rf dist out .vite node_modules client/node_modules server/node_modules && npm ci --legacy-peer-deps",
|
|
37
|
-
"build:install": "
|
|
35
|
+
"build": "npm run build:clean && npm run build:install && npm run build:sdk && npm run build:client && npm run build:server",
|
|
36
|
+
"build:clean": "rm -rf dist out .vite node_modules client/node_modules server/node_modules && npm_config_cache=.npm-cache npm ci --legacy-peer-deps",
|
|
37
|
+
"build:install": "npm_config_cache=.npm-cache npm --prefix client ci --legacy-peer-deps && npm_config_cache=.npm-cache npm --prefix server ci --legacy-peer-deps && npm_config_cache=.npm-cache npm --prefix sdk ci --legacy-peer-deps",
|
|
38
|
+
"build:sdk": "npm run --prefix sdk build",
|
|
38
39
|
"build:client": "cd client && npm run build",
|
|
39
40
|
"build:server": "cd server && npm run build",
|
|
40
41
|
"start": "NODE_ENV=production node bin/start.js",
|
|
41
42
|
"prettier-fix": "prettier --write .",
|
|
42
|
-
"install:deps": "
|
|
43
|
-
"sync:lockfiles": "npm install --legacy-peer-deps &&
|
|
43
|
+
"install:deps": "npm_config_cache=.npm-cache npm --prefix server install --legacy-peer-deps && npm_config_cache=.npm-cache npm --prefix client install --legacy-peer-deps",
|
|
44
|
+
"sync:lockfiles": "npm_config_cache=.npm-cache npm install --legacy-peer-deps && npm_config_cache=.npm-cache npm --prefix client install --legacy-peer-deps && npm_config_cache=.npm-cache npm --prefix server install --legacy-peer-deps",
|
|
44
45
|
"docker:build": "docker build -t mcpjam/mcp-inspector:latest .",
|
|
45
46
|
"docker:build:dev": "docker build -f Dockerfile.dev -t mcpjam/mcp-inspector:dev .",
|
|
46
47
|
"docker:run": "docker run -p 3001:3001 mcpjam/mcp-inspector:latest",
|