-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 838 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 838 Bytes
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
{
"name": "designdiff-mcp",
"version": "0.2.0",
"description": "Bidirectional design-to-code parity engine for Figma and MCP-compatible AI agents",
"main": "dist/index.js",
"bin": { "designdiff-mcp": "dist/index.js" },
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js"
},
"keywords": ["mcp", "figma", "design-system", "parity", "design-to-code"],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"axios": "^1.7.0",
"express": "^4.19.0",
"playwright": "^1.48.0",
"simple-git": "^3.27.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
}
}