-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.16 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": "@ui-layouts/mcp",
"version": "0.3.0",
"description": "MCP server for ui-layouts (local STDIO)",
"main": "dist/src/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"dev": "pnpm run build && pnpm start",
"prepublishOnly": "pnpm run build",
"release": "release-it",
"release:dry-run": "release-it --dry-run"
},
"keywords": [
"mcp",
"ui-layouts",
"local",
"stdio"
],
"author": "YEOM-JINHO <pwlsghq@naver.com>",
"license": "MIT",
"engines": {
"node": ">=20.10.0"
},
"bin": {
"ui-layouts-mcp": "./dist/src/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.0",
"@types/node": "^24.8.1",
"release-it": "^19.0.6",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ui-layouts/mcp.git"
},
"bugs": {
"url": "https://github.com/ui-layouts/mcp/issues"
},
"publishConfig": {
"access": "public"
}
}