codebyai-mcp-server
Version:
MCP server for converting design files to frontend code
42 lines (41 loc) • 1.25 kB
JSON
{
"name": "codebyai-mcp-server",
"version": "1.0.15",
"description": "MCP server for converting design files to frontend code",
"type": "module",
"module": "dist/index.mjs",
"files": ["dist","README.md", "package.json"],
"scripts": {
"start": "node dist/index.mjs",
"build:be": "bun build ./src/index.ts --minify --outfile dist/index.mjs --target=node",
"build:fe": "bun build ./src/fe/openapi-filter.ts --outdir ./dist/static --target browser --minify",
"copy:html": "bun run ./scripts/copy-html.ts",
"build": "bun run build:be && bun run build:fe && bun run copy:html"
},
"bin": {
"codebyai-mcp-server": "./dist/index.mjs"
},
"keywords": ["mcp", "design", "code", "sketch", "figma"],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "20.17.23",
"@types/bun": "1.2.18",
"@types/bootstrap": "5.2.10",
"@types/js-yaml": "4.0.5",
"typescript": "5.7.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.12.1",
"@google/genai": "1.7.0",
"formdata-node": "6.0.3",
"open": "10.1.2",
"compressing": "1.10.3",
"bootstrap": "5.3.3",
"bootstrap-icons": "1.10.5",
"js-yaml": "4.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}