UNPKG

figma-mcp-pro

Version:

A Claude Desktop MCP server for Figma that retrieves design data, downloads assets, and processes designer comments for AI-powered design implementation

94 lines (93 loc) 2.44 kB
{ "name": "figma-mcp-pro", "version": "3.49.0", "description": "A Claude Desktop MCP server for Figma that retrieves design data, downloads assets, and processes designer comments for AI-powered design implementation", "main": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "bin": { "figma-mcp-pro": "bin/figma-mcp-pro.js" }, "files": [ "dist", "bin", "README.md", "LICENSE", "ARCHITECTURE.md" ], "scripts": { "build": "tsup", "dev": "tsup --watch", "start": "node dist/index.js", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:quick": "./scripts/test-quick.sh", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "format": "prettier --write src/**/*.ts", "type-check": "tsc --noEmit", "clean": "rm -rf dist", "prepublishOnly": "npm run clean && npm run build", "publish:dry": "npm pack --dry-run", "publish:script": "./scripts/publish.sh" }, "keywords": [ "figma", "mcp", "model-context-protocol", "ai", "cursor", "design", "typescript", "comment-processing", "coordinate-matching", "export-settings", "image-download", "design-tokens", "code-generation", "claude", "context-processing", "workflow", "windsurf", "ai-prompts" ], "author": "Artem Svitelskyi <a.svitelskyi@gmail.com>", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.0", "axios": "^1.6.0", "chalk": "^5.3.0", "commander": "^11.1.0", "dotenv": "^16.3.0", "node-cache": "^5.1.2", "p-limit": "^5.0.0", "p-retry": "^6.2.0", "zod": "^3.22.0" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^8.33.1", "@typescript-eslint/parser": "^8.33.1", "eslint": "^8.54.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "jest": "^29.7.0", "prettier": "^3.1.0", "ts-jest": "^29.1.0", "tsup": "^8.0.0", "typescript": "^5.3.0" }, "engines": { "node": ">=18.0.0" }, "repository": { "type": "git", "url": "git+https://github.com/artemsvit/Figma-MCP-Pro.git" }, "bugs": { "url": "https://github.com/artemsvit/Figma-MCP-Pro/issues" }, "homepage": "https://github.com/artemsvit/Figma-MCP-Pro#readme" }