package.json•967 B
{
"name": "mcp-planning-server",
"version": "1.0.0",
"description": "MCP server for planning and task management with Claude Code",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-planning-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src tests",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@types/uuid": "^9.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"claude",
"planning",
"task-management"
],
"license": "MIT"
}