{
  "name": "spex-mcp",
  "version": "1.5.0",
  "description": "MCP server for Figma SpeX plugin and Cursor AI integration",
  "main": "./src/index.js",
  "bin": {
    "spex-mcp": "./bin/spex-mcp.js"
  },
  "type": "module",
  "scripts": {
    "start": "node src/index.js",
    "dev": "node --watch src/index.js",
    "test": "node test/test-server.js",
    "inspect": "npx @modelcontextprotocol/inspector",
    "prepublishOnly": "npm test",
    "publish:npm": "node scripts/publish.js",
    "release:patch": "npm version patch && npm run publish:npm",
    "release:minor": "npm version minor && npm run publish:npm",
    "release:major": "npm version major && npm run publish:npm"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.4.0",
    "adm-zip": "^0.5.10",
    "ws": "^8.16.0"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "dotenv": "^16.5.0"
  },
  "keywords": [
    "mcp",
    "figma",
    "spex",
    "cursor",
    "ai",
    "design-system",
    "websocket",
    "plugin"
  ],
  "author": "Khoa Hoang",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/your-org/spex-mcp.git"
  },
  "homepage": "https://github.com/your-org/spex-mcp#readme",
  "bugs": {
    "url": "https://github.com/your-org/spex-mcp/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "preferGlobal": true,
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "bin/**/*",
    "src/**/*",
    "docs/**/*",
    "README.md",
    "LICENSE"
  ]
}
