package.json•1.3 kB
{
"name": "@r-mcp/mcp-html-maker",
"version": "1.1.4",
"description": "A MCP (Model Context Protocol) server for generating HTML pages",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-html-maker": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"start": "node dist/index.js",
"install-server": "tsc && chmod 755 dist/index.js && node scripts/update-config.js",
"install-cursor": "tsc && chmod 755 dist/index.js && node scripts/update-config.js cursor",
"install-desktop": "tsc && chmod 755 dist/index.js && node scripts/update-config.js desktop",
"install-code": "tsc && chmod 755 dist/index.js && node scripts/update-config.js code",
"install-mcp": "tsc && chmod 755 dist/index.js && node scripts/update-config.js mcp",
"install-code-library": "tsc && chmod 755 dist/index.js && node scripts/update-config.js code-library",
"release": "chmod 755 scripts/build-and-publish.js && node scripts/build-and-publish.js"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.12",
"@modelcontextprotocol/sdk": "^1.17.2",
"ai": "^5.0.12",
"axios": "^1.11.0",
"zod": "^4.0.17"
},
"devDependencies": {
"@types/node": "^24.2.1",
"typescript": "^5.9.2"
},
"files": [
"dist"
]
}