package.json•885 B
{
"name": "build-mcp-server",
"version": "1.0.0",
"description": "A Model Context Protocol server for build and development tasks",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"postinstall": "npm run build"
},
"keywords": ["mcp", "model-context-protocol", "build", "development"],
"author": "teodortrotea",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TeodorTrotea/mcptest.git"
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"bin": {
"build-mcp-server": "dist/index.js"
}
}