forked from GLips/Figma-Context-MCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.1 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "figma-developer-mcp",
"version": "0.6.4",
"mcpName": "io.github.GLips/Figma-Context-MCP",
"description": "Give your coding agent access to your Figma data. Implement designs in any framework in one-shot.",
"type": "module",
"main": "dist/index.js",
"bin": {
"figma-developer-mcp": "dist/bin.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup --dts",
"type-check": "tsc --noEmit",
"test": "vitest run",
"start": "node dist/bin.js",
"start:cli": "cross-env NODE_ENV=cli node dist/bin.js",
"start:http": "node dist/bin.js",
"dev": "cross-env NODE_ENV=development tsup --watch",
"dev:cli": "cross-env NODE_ENV=development tsup --watch -- --stdio",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.ts\"",
"inspect": "pnpx @modelcontextprotocol/inspector",
"prepack": "pnpm build"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.10.0",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook",
"sharp"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/GLips/Figma-Context-MCP.git"
},
"homepage": "https://www.framelink.ai",
"keywords": [
"figma",
"mcp",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@figma/rest-api-spec": "^0.33.0",
"@modelcontextprotocol/sdk": "^1.10.2",
"@types/yargs": "^17.0.33",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"js-yaml": "^4.1.0",
"remeda": "^2.20.1",
"sharp": "^0.34.3",
"yargs": "^17.7.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/express": "^5.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.17.0",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"globals": "^17.3.0",
"lefthook": "^2.0.15",
"prettier": "^3.5.0",
"tsup": "^8.4.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
}
}