{
  "name": "shadcn-svelte-mcp-server",
  "version": "1.0.3",
  "description": "A Model Context Protocol (MCP) server for shadcn-svelte components, providing AI assistants with access to component source code, demos, blocks, and metadata.",
  "type": "module",
  "main": "./build/index.js",
  "bin": {
    "shadcn-mcp": "./build/index.js"
  },
  "files": [
    "build/**/*",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "mcp",
    "model-context-protocol",
    "shadcn",
    "shadcn-svelte",
    "ui-components",
    "svelte",
    "typescript",
    "ai-tools",
    "claude",
    "copilot"
  ],
  "author": "Mudia Geo <mudiageo@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mudiageo/shadcn-svelte-mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/mudiageo/shadcn-svelte-mcp-server/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.16.0",
    "axios": "^1.8.4",
    "cheerio": "^1.0.0",
    "zod": "^3.24.2",
    "winston": "^3.15.0",
    "joi": "^17.13.3",
    "uuid": "^10.0.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.5",
    "@types/uuid": "^10.0.0",
    "typescript": "^5.7.2"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf build",
    "start": "node build/index.js",
    "dev": "tsc && node build/index.js",
    "test": "./test-package.sh",
    "examples": "./examples.sh"
  }
}