PettyUI/packages/mcp/package.json
2026-03-31 21:42:28 +07:00

36 lines
782 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 --noCheck",
"dev": "tsc --noCheck --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": {
"@types/node": "^25.5.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}