package.json•1.25 kB
{
"name": "mcp-boilerplate",
"version": "1.0.0",
"description": "Minimal MCP (Model Context Protocol) server boilerplate with simple addition tool",
"main": "dist/index.js",
"bin": {
"mcp-boilerplate": "./dist/index.js"
},
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakreymyers/mcp-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/jakreymyers/mcp-boilerplate/issues"
},
"homepage": "https://github.com/jakreymyers/mcp-boilerplate#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.32.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
}
}