-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.62 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
{
"name": "asdesigned",
"version": "0.2.0",
"mcpName": "io.github.Maher-Reven/asdesigned",
"description": "Check that a rendered UI component is as designed — diff it against its Figma source and see exactly what drifted.",
"keywords": [
"figma",
"design",
"design-system",
"mcp",
"agent",
"claude-code",
"cursor",
"playwright",
"design-to-code",
"design-qa"
],
"homepage": "https://github.com/Maher-Reven/asdesigned#readme",
"bugs": {
"url": "https://github.com/Maher-Reven/asdesigned/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maher-Reven/asdesigned.git"
},
"license": "MIT",
"author": "Maher Kurdi",
"type": "module",
"bin": {
"asdesigned": "dist/cli.js",
"asdesigned-mcp": "dist/mcp.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run build && npm test",
"clean": "rm -rf dist"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"playwright": "^1.63.0",
"zod": "^4.5.4"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
}
}