|
1 | 1 | { |
2 | 2 | "name": "@mcp-use/inspector", |
| 3 | + "type": "module", |
3 | 4 | "version": "0.1.0", |
4 | | - "description": "MCP Inspector package for debugging and inspecting MCP servers", |
5 | | - "main": "dist/index.js", |
6 | | - "types": "dist/index.d.ts", |
| 5 | + "description": "MCP Inspector - A tool for inspecting and debugging MCP servers", |
| 6 | + "author": "", |
| 7 | + "license": "MIT", |
| 8 | + "keywords": [ |
| 9 | + "mcp", |
| 10 | + "inspector", |
| 11 | + "debug", |
| 12 | + "tools" |
| 13 | + ], |
7 | 14 | "scripts": { |
8 | | - "build": "tsc", |
9 | | - "dev": "tsc --watch", |
10 | | - "test": "vitest" |
| 15 | + "dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"", |
| 16 | + "dev:client": "vite", |
| 17 | + "dev:server": "tsx watch src/server/index.ts", |
| 18 | + "build": "npm run build:client && npm run build:server", |
| 19 | + "build:client": "vite build", |
| 20 | + "build:server": "tsc -p tsconfig.server.json", |
| 21 | + "preview": "vite preview", |
| 22 | + "type-check": "tsc --noEmit", |
| 23 | + "lint": "eslint .", |
| 24 | + "lint:fix": "eslint . --fix", |
| 25 | + "install:yarn": "yarn install", |
| 26 | + "install:pnpm": "pnpm install", |
| 27 | + "install:npm": "npm install", |
| 28 | + "lint:yarn": "yarn eslint . --fix", |
| 29 | + "lint:npm": "npm run lint:fix", |
| 30 | + "lint:pnpm": "pnpm lint:fix" |
11 | 31 | }, |
12 | 32 | "dependencies": { |
13 | | - "mcp-use": "workspace:*" |
| 33 | + "@radix-ui/react-alert-dialog": "^1.1.15", |
| 34 | + "@radix-ui/react-dialog": "^1.1.15", |
| 35 | + "@radix-ui/react-dropdown-menu": "^2.1.16", |
| 36 | + "@radix-ui/react-label": "^2.1.7", |
| 37 | + "@radix-ui/react-select": "^2.2.6", |
| 38 | + "@radix-ui/react-tooltip": "^1.2.8", |
| 39 | + "@tailwindcss/cli": "^4.1.14", |
| 40 | + "@tailwindcss/vite": "^4.1.14", |
| 41 | + "class-variance-authority": "^0.7.1", |
| 42 | + "clsx": "^2.1.1", |
| 43 | + "framer-motion": "^12.23.22", |
| 44 | + "hono": "^4.0.0", |
| 45 | + "lucide-react": "^0.545.0", |
| 46 | + "mcp-use": "^0.2.0", |
| 47 | + "motion": "^12.23.22", |
| 48 | + "react": "^19.2.0", |
| 49 | + "react-dom": "^19.2.0", |
| 50 | + "react-router-dom": "^7.9.3", |
| 51 | + "tailwind-merge": "^3.3.1" |
14 | 52 | }, |
15 | 53 | "devDependencies": { |
16 | | - "@types/node": "^20.0.0", |
17 | | - "typescript": "^5.0.0", |
18 | | - "vitest": "^1.0.0" |
19 | | - }, |
20 | | - "publishConfig": { |
21 | | - "access": "public" |
| 54 | + "@antfu/eslint-config": "^5.4.1", |
| 55 | + "@eslint-react/eslint-plugin": "^1.38.4", |
| 56 | + "@radix-ui/react-slot": "^1.2.3", |
| 57 | + "@types/node": "^24.7.0", |
| 58 | + "@types/react": "^19.2.2", |
| 59 | + "@types/react-dom": "^19.2.1", |
| 60 | + "@vitejs/plugin-react": "^5.0.4", |
| 61 | + "concurrently": "^9.2.1", |
| 62 | + "eslint": "^9.36.0", |
| 63 | + "eslint-plugin-react-hooks": "^5.2.0", |
| 64 | + "eslint-plugin-react-refresh": "^0.4.0", |
| 65 | + "tailwindcss": "^4.1.14", |
| 66 | + "tsx": "^4.6.0", |
| 67 | + "tw-animate-css": "^1.4.0", |
| 68 | + "typescript": "^5.9.3", |
| 69 | + "vite": "^7.1.9" |
22 | 70 | } |
23 | 71 | } |
0 commit comments