package.jsonโข1.13 kB
{
"name": "demo-mcp-dev-1",
"version": "1.0.0",
"description": "A comprehensive boilerplate MCP server built with TypeScript using Domain-Driven Design patterns",
"main": "dist/index.js",
"type": "module",
"bin": {
"demo-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"typescript",
"domain-driven-design",
"boilerplate"
],
"author": "PCN (The Provenance Chain Network)",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"files": [
"dist"
]
}