@kjaniec-dev/ui-mcp 0.7.2 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/components.json +2399 -217
- package/package.json +8 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kjaniec-dev/ui-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server for KJ Product Kit design system and UI components",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "kjaniec-dev",
|
|
@@ -27,17 +27,19 @@
|
|
|
27
27
|
"dev": "tsup --watch",
|
|
28
28
|
"clean": "rm -rf dist",
|
|
29
29
|
"typecheck": "tsc --noEmit",
|
|
30
|
-
"
|
|
30
|
+
"lint": "eslint .",
|
|
31
|
+
"test": "vitest run",
|
|
31
32
|
"prepublishOnly": "npm run clean && npm run build && npm run test"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
35
|
"@modelcontextprotocol/sdk": "^1.0.1",
|
|
35
|
-
"zod": "^
|
|
36
|
+
"zod": "^4.4.3"
|
|
36
37
|
},
|
|
37
38
|
"devDependencies": {
|
|
38
|
-
"@types/node": "^
|
|
39
|
+
"@types/node": "^26.1.0",
|
|
39
40
|
"tsup": "^8.3.0",
|
|
40
|
-
"tsx": "^4.
|
|
41
|
-
"typescript": "^
|
|
41
|
+
"tsx": "^4.23.0",
|
|
42
|
+
"typescript": "^6.0.3",
|
|
43
|
+
"vitest": "^4.1.9"
|
|
42
44
|
}
|
|
43
45
|
}
|