package.json•1.57 kB
{
"name": "figma-codegen-mcp",
"version": "1.0.11",
"description": "MCP Server to convert Figma Design to pseudo-code like structure - simple yet efficient for LLMs to understand design context.",
"type": "module",
"bin": {
"figma-mcp-server": "build/index.js"
},
"scripts": {
"build": "tsup",
"build:tsc": "rm -rf ./build && tsc",
"dev": "cross-env NODE_ENV=development tsup --watch",
"start": "node build/index.js",
"inspect": "npx @modelcontextprotocol/inspector node build/index.js",
"release": "npx tsx ./release.ts",
"publish": "npm run build && npm publish --access public"
},
"files": [
"build",
"README.md"
],
"keywords": [
"figma",
"mcp",
"design-to-code",
"figma-to-code",
"ai-figma-to-code",
"figma-mcp",
"pseudo-code",
"prototyping"
],
"author": "toddle-edu",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.3",
"axios": "^1.10.0",
"dotenv": "^16.5.0",
"prettier": "^3.5.3",
"zod": "^3.25.64"
},
"devDependencies": {
"@figma/rest-api-spec": "^0.31.0",
"@modelcontextprotocol/inspector": "^0.14.1",
"@types/node": "^24.0.1",
"cross-env": "^7.0.3",
"tsup": "^8.0.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toddle-edu/figma-mcp-server.git"
},
"bugs": {
"url": "https://github.com/toddle-edu/figma-mcp-server/issues"
},
"homepage": "https://github.com/toddle-edu/figma-mcp-server#readme"
}