29 lines
963 B
JSON
29 lines
963 B
JSON
{
|
|
"name": "@modelcontextprotocol/inspector",
|
|
"version": "0.0.1",
|
|
"description": "Model Context Protocol inspector",
|
|
"license": "MIT",
|
|
"author": "Anthropic, PBC (https://anthropic.com)",
|
|
"homepage": "https://modelcontextprotocol.github.io",
|
|
"bugs": "https://github.com/modelcontextprotocol/inspector/issues",
|
|
"type": "module",
|
|
"workspaces": [
|
|
"client",
|
|
"server"
|
|
],
|
|
"scripts": {
|
|
"dev": "concurrently \"cd client && npm run dev\" \"cd server && npm run dev\"",
|
|
"build-server": "cd server && npm run build",
|
|
"build-client": "cd client && npm run build",
|
|
"build": "npm run build-server && npm run build-client",
|
|
"start-server": "cd server && npm run start",
|
|
"start-client": "cd client && npm run preview",
|
|
"start": "concurrently \"npm run start-server\" \"npm run start-client\"",
|
|
"prettier-fix": "prettier --write ."
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^9.0.1",
|
|
"prettier": "3.3.3"
|
|
}
|
|
}
|