package.json•1.35 kB
{
"name": "learning-hour-mcp",
"version": "1.1.0",
"description": "MCP server for generating Learning Hour content and Miro boards for Technical Coaches",
"main": "dist/index.js",
"bin": {
"learning-hour-mcp": "./dist/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.54.0",
"@mirohq/miro-api": "^2.2.4",
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/form-data": "^2.2.1",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"form-data": "^4.0.3",
"rayso": "^1.2.1",
"winston": "^3.17.0",
"zod": "^3.22.0"
},
"keywords": [
"mcp",
"mcp-server",
"learning-hour",
"technical-coaching",
"miro",
"code-smells",
"refactoring"
],
"author": "Steven Diamante",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/SDiamante13/learning-hour-mcp.git"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/ui": "^3.2.4",
"ajv": "^8.17.1",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
}
}