UNPKG

figma-copilot

Version:

Enhanced Figma MCP server with improved font handling and additional features. Unofficial tool, not affiliated with Figma, Inc.

64 lines (63 loc) 1.75 kB
{ "name": "figma-copilot", "description": "Enhanced Figma MCP server with improved font handling and additional features. Unofficial tool, not affiliated with Figma, Inc.", "version": "0.4.3", "author": "xlzuvekas", "license": "MIT", "keywords": [ "figma", "mcp", "model-context-protocol", "ai", "cursor", "claude", "figma-plugin", "automation", "design-tools" ], "homepage": "https://github.com/xlzuvekas/figma-copilot#readme", "bugs": { "url": "https://github.com/xlzuvekas/figma-copilot/issues" }, "module": "dist/server.js", "main": "dist/server.js", "repository": { "type": "git", "url": "git+https://github.com/xlzuvekas/figma-copilot.git" }, "bin": { "figma-copilot": "dist/server.js" }, "files": [ "dist", "readme.md" ], "type": "module", "scripts": { "start": "bun run dist/server.js", "socket": "bun run src/socket.ts", "setup": "./scripts/setup.sh", "build": "tsup && npm run build:plugin", "build:plugin": "babel src/figma_copilot_plugin/code.js --out-file src/figma_copilot_plugin/code.transpiled.js && echo 'Plugin transpiled to ES5 for Figma compatibility'", "build:watch": "tsup --watch", "dev": "bun run build:watch", "pub:release": "bun run build && npm publish" }, "devDependencies": { "@babel/cli": "^7.27.2", "@babel/core": "^7.27.4", "@babel/preset-env": "^7.27.2", "@figma/plugin-typings": "^1.113.0", "@types/bun": "latest", "@types/ws": "^8.18.1", "bun-types": "^1.2.5", "tsup": "^8.4.0", "typescript": "^5.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "latest", "uuid": "latest", "ws": "latest", "zod": "latest" } }