-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "la-forge-mcp",
"version": "1.1.1",
"description": "A pixel-perfect visor for AI coding assistants - MCP server for visual CSS debugging",
"main": "dist/index.js",
"type": "module",
"bin": {
"la-forge-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"css",
"debugging",
"visual-testing",
"chrome-devtools",
"claude-code",
"ai-coding",
"screenshot-diff"
],
"author": {
"name": "Monomyth Development",
"url": "https://monomyth.dev"
},
"license": "MIT",
"homepage": "https://github.com/MonomythDevelopment/la-forge-mcp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MonomythDevelopment/la-forge-mcp.git"
},
"bugs": {
"url": "https://github.com/MonomythDevelopment/la-forge-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"sharp": "^0.33.0",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/ws": "^8.5.10",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}