Make nested packages private, just install root package

This commit is contained in:
Justin Spahr-Summers
2024-11-11 11:20:53 +00:00
parent 3a9b08bd37
commit 448910d986
4 changed files with 14 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
{ {
"name": "@modelcontextprotocol/inspector-client", "name": "@modelcontextprotocol/inspector-client",
"version": "0.0.0", "version": "0.1.0",
"private": true,
"description": "Client-side application for the Model Context Protocol inspector", "description": "Client-side application for the Model Context Protocol inspector",
"license": "MIT", "license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)", "author": "Anthropic, PBC (https://anthropic.com)",

12
package-lock.json generated
View File

@@ -1,25 +1,29 @@
{ {
"name": "@modelcontextprotocol/inspector", "name": "@modelcontextprotocol/inspector",
"version": "0.0.1", "version": "0.1.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@modelcontextprotocol/inspector", "name": "@modelcontextprotocol/inspector",
"version": "0.0.1", "version": "0.1.0",
"license": "MIT", "license": "MIT",
"workspaces": [ "workspaces": [
"client", "client",
"server" "server"
], ],
"bin": {
"mcp-inspector": "bin/cli.js"
},
"devDependencies": { "devDependencies": {
"@types/node": "^22.7.5",
"concurrently": "^9.0.1", "concurrently": "^9.0.1",
"prettier": "3.3.3" "prettier": "3.3.3"
} }
}, },
"client": { "client": {
"name": "@modelcontextprotocol/inspector-client", "name": "@modelcontextprotocol/inspector-client",
"version": "0.0.0", "version": "0.1.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@modelcontextprotocol/sdk": "*", "@modelcontextprotocol/sdk": "*",
@@ -5863,7 +5867,7 @@
}, },
"server": { "server": {
"name": "@modelcontextprotocol/inspector-server", "name": "@modelcontextprotocol/inspector-server",
"version": "0.0.1", "version": "0.1.0",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@modelcontextprotocol/sdk": "*", "@modelcontextprotocol/sdk": "*",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@modelcontextprotocol/inspector", "name": "@modelcontextprotocol/inspector",
"version": "0.0.1", "version": "0.1.0",
"description": "Model Context Protocol inspector", "description": "Model Context Protocol inspector",
"license": "MIT", "license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)", "author": "Anthropic, PBC (https://anthropic.com)",
@@ -12,6 +12,7 @@
}, },
"files": [ "files": [
"bin", "bin",
"client/bin",
"client/dist", "client/dist",
"server/build" "server/build"
], ],

View File

@@ -1,6 +1,7 @@
{ {
"name": "@modelcontextprotocol/inspector-server", "name": "@modelcontextprotocol/inspector-server",
"version": "0.0.1", "version": "0.1.0",
"private": true,
"description": "Server-side application for the Model Context Protocol inspector", "description": "Server-side application for the Model Context Protocol inspector",
"license": "MIT", "license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)", "author": "Anthropic, PBC (https://anthropic.com)",