PettyUI/packages/mcp/package.json
2026-03-29 21:51:51 +07:00

31 lines
712 B
JSON

{
"name": "pettyui-mcp",
"version": "0.1.0",
"description": "MCP server for PettyUI — AI interface to the component library",
"type": "module",
"bin": {
"pettyui": "./dist/cli.js",
"pettyui-mcp": "./dist/index.js"
},
"exports": {
".": { "import": "./dist/index.js" },
"./registry": { "import": "./dist/registry.js" }
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"pettyui": "workspace:*",
"zod": "^4.3.6"
},
"devDependencies": {
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}