@iflow-mcp/artemsvit-figma-mcp-pro 3.49.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,93 @@
1
+ {
2
+ "name": "@iflow-mcp/artemsvit-figma-mcp-pro",
3
+ "version": "3.49.0",
4
+ "description": "A Claude Desktop MCP server for Figma that retrieves design data, downloads assets, and processes designer comments for AI-powered design implementation",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "type": "module",
8
+ "bin": {
9
+ "iflow-mcp-artemsvit-figma-mcp-pro": "bin/figma-mcp-pro.js"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "bin",
14
+ "README.md",
15
+ "LICENSE",
16
+ "ARCHITECTURE.md"
17
+ ],
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "dev": "tsup --watch",
21
+ "start": "node dist/index.js",
22
+ "test": "jest",
23
+ "test:watch": "jest --watch",
24
+ "test:coverage": "jest --coverage",
25
+ "test:quick": "./scripts/test-quick.sh",
26
+ "lint": "eslint src/**/*.ts",
27
+ "lint:fix": "eslint src/**/*.ts --fix",
28
+ "format": "prettier --write src/**/*.ts",
29
+ "type-check": "tsc --noEmit",
30
+ "clean": "rm -rf dist",
31
+ "prepublishOnly": "npm run clean && npm run build",
32
+ "publish:dry": "npm pack --dry-run",
33
+ "publish:script": "./scripts/publish.sh"
34
+ },
35
+ "keywords": [
36
+ "figma",
37
+ "mcp",
38
+ "model-context-protocol",
39
+ "ai",
40
+ "cursor",
41
+ "design",
42
+ "typescript",
43
+ "comment-processing",
44
+ "coordinate-matching",
45
+ "export-settings",
46
+ "image-download",
47
+ "design-tokens",
48
+ "code-generation",
49
+ "claude",
50
+ "context-processing",
51
+ "workflow",
52
+ "windsurf",
53
+ "ai-prompts"
54
+ ],
55
+ "author": "Artem Svitelskyi <a.svitelskyi@gmail.com>",
56
+ "license": "MIT",
57
+ "dependencies": {
58
+ "@modelcontextprotocol/sdk": "^1.0.0",
59
+ "axios": "^1.6.0",
60
+ "chalk": "^5.3.0",
61
+ "commander": "^11.1.0",
62
+ "dotenv": "^16.3.0",
63
+ "node-cache": "^5.1.2",
64
+ "p-limit": "^5.0.0",
65
+ "p-retry": "^6.2.0",
66
+ "zod": "^3.22.0"
67
+ },
68
+ "devDependencies": {
69
+ "@types/jest": "^29.5.0",
70
+ "@types/node": "^20.10.0",
71
+ "@typescript-eslint/eslint-plugin": "^8.33.1",
72
+ "@typescript-eslint/parser": "^8.33.1",
73
+ "eslint": "^8.54.0",
74
+ "eslint-config-prettier": "^9.0.0",
75
+ "eslint-plugin-prettier": "^5.0.0",
76
+ "jest": "^29.7.0",
77
+ "prettier": "^3.1.0",
78
+ "ts-jest": "^29.1.0",
79
+ "tsup": "^8.0.0",
80
+ "typescript": "^5.3.0"
81
+ },
82
+ "engines": {
83
+ "node": ">=18.0.0"
84
+ },
85
+ "repository": {
86
+ "type": "git",
87
+ "url": "git+https://github.com/artemsvit/Figma-MCP-Pro.git"
88
+ },
89
+ "bugs": {
90
+ "url": "https://github.com/artemsvit/Figma-MCP-Pro/issues"
91
+ },
92
+ "homepage": "https://github.com/artemsvit/Figma-MCP-Pro#readme"
93
+ }