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",
"version": "0.0.0",
"version": "0.1.0",
"private": true,
"description": "Client-side application for the Model Context Protocol inspector",
"license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)",

12
package-lock.json generated
View File

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

View File

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

View File

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