{
  "name": "create-mcp-cli",
  "version": "1.0.0",
  "description": "CLI工具用于创建基于Model Context Protocol的项目结构",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "create-mcp": "./dist/index.js"
  },
  "files": [
    "dist",
    "templates",
    "README.md"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/1yhy/create-mcp-cli.git"
  },
  "keywords": [
    "mcp",
    "cli",
    "generator",
    "template",
    "modelcontextprotocol",
    "typescript"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "chalk": "^5.3.0",
    "commander": "^11.1.0",
    "cross-env": "^7.0.3",
    "ejs": "^3.1.9",
    "fs-extra": "^11.2.0",
    "inquirer": "^9.2.14",
    "ora": "^7.0.1",
    "zod": "^3.22.4",
    "validate-npm-package-name": "^5.0.0"
  },
  "devDependencies": {
    "@types/ejs": "^3.1.5",
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.11.26",
    "@types/validate-npm-package-name": "^4.0.2",
    "@typescript-eslint/eslint-plugin": "^7.1.1",
    "@typescript-eslint/parser": "^7.1.1",
    "eslint": "^8.57.0",
    "nodemon": "^3.1.0",
    "prettier": "^3.2.5",
    "tsup": "^8.0.1",
    "typescript": "^5.3.3"
  },
  "scripts": {
    "dev": "tsup --watch",
    "dev:watch": "cross-env NODE_ENV=development tsup --watch",
    "build": "tsup",
    "start": "npm run build && node dist/index.js",
    "type-check": "tsc --noEmit",
    "lint": "eslint . --ext .ts",
    "format": "prettier --write \"src/**/*.ts\""
  }
}