-
Notifications
You must be signed in to change notification settings - Fork 192
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.22 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.22 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
83
84
85
86
87
88
89
{
"name": "figma-console-mcp",
"version": "1.22.4",
"description": "MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode",
"type": "module",
"main": "dist/local.js",
"types": "dist/local.d.ts",
"bin": {
"figma-console-mcp": "./dist/local.js"
},
"files": [
"dist",
"figma-desktop-bridge",
"README.md",
"LICENSE"
],
"scripts": {
"prepublishOnly": "npm run build",
"deploy": "wrangler deploy",
"dev": "wrangler dev",
"dev:local": "tsx src/local.ts",
"build": "npm run build:local && npm run build:cloudflare && npm run build:apps",
"build:apps": "cross-env APP_NAME=token-browser vite build && cross-env APP_NAME=design-system-dashboard vite build",
"dev:apps": "vite build --watch",
"build:local": "tsc -p tsconfig.local.json",
"build:cloudflare": "tsc -p tsconfig.cloudflare.json",
"start": "wrangler dev",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"format": "biome format --write",
"lint:fix": "biome lint --fix",
"cf-typegen": "wrangler types",
"type-check": "tsc --noEmit"
},
"keywords": [
"mcp",
"figma",
"plugin",
"console",
"debugging",
"ai",
"anthropic",
"claude",
"cloudflare",
"workers"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/southleft/figma-console-mcp.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@cloudflare/puppeteer": "^1.0.4",
"@modelcontextprotocol/ext-apps": "^1.0.1",
"@modelcontextprotocol/sdk": "^1.26.0",
"agents": "^0.7.1",
"axe-core": "^4.11.2",
"chrome-remote-interface": "^0.33.2",
"jsdom": "^29.0.1",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"puppeteer-core": "^23.11.1",
"uuid": "^11.0.3",
"ws": "^8.19.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@types/jest": "^29.5.14",
"@types/jsdom": "^28.0.1",
"@types/node": "^22.10.2",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "5.9.3",
"vite": "^6.0.0",
"vite-plugin-singlefile": "^2.0.0",
"wrangler": "^4.42.0",
"zod-to-json-schema": "^3.25.1"
}
}