package.json•1.18 kB
{
"name": "@thirdstrandstudio/mcp-yeoman",
"version": "0.7.0",
"description": "MCP server for yeoman",
"license": "MIT",
"author": "Third Strand Studio LLC (https://github.com/thirdstrandstudio)",
"homepage": "https://github.com/thirdstrandstudio/mcp-yeoman",
"bugs": "https://github.com/thirdstrandstudio/mcp-yeoman/issues",
"type": "module",
"bin": {
"mcp-yeoman": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf ./dist && tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"generate-api": "npx swagger-typescript-api -p openapi.yaml -o ./src/api/ --axios",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"start": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"axios": "^1.8.4",
"yeoman-environment": "^4.4.3",
"yeoman-generator": "^7.5.1",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.6.2"
}
}