-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.47 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
{
"name": "@elsahafy/ui-toolkit-mcp",
"version": "2.0.1",
"description": "Full-stack UI toolkit MCP server: generate components, manage design tokens, and audit markup across React, Vue, Svelte, Angular, and Web Components.",
"type": "module",
"main": "dist/index.js",
"bin": {
"ui-toolkit-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"dev": "tsc && node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"ui",
"component-generator",
"design-tokens",
"accessibility",
"react",
"vue",
"svelte",
"angular",
"web-components",
"wcag",
"design-system",
"ai-tools",
"claude",
"cursor"
],
"repository": {
"type": "git",
"url": "git+https://github.com/elsahafy/ui-toolkit-mcp.git"
},
"bugs": {
"url": "https://github.com/elsahafy/ui-toolkit-mcp/issues"
},
"homepage": "https://github.com/elsahafy/ui-toolkit-mcp#readme",
"author": "Ibrahim Elsahafy",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4"
},
"devDependencies": {
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"vitest": "^3.2.4"
}
}