scrum4me-mcp/package.json
Madhura68 5dfca22fe6 chore: add vitest to devDependencies with config
Adds vitest as test runner for the MCP repo. Config targets
__tests__/**/*.test.ts and excludes vendor/ and node_modules/.
2026-04-30 18:22:51 +02:00

46 lines
1 KiB
JSON

{
"name": "scrum4me-mcp",
"version": "0.1.0",
"description": "MCP server for Scrum4Me — exposes dev-flow tools and prompts via the Model Context Protocol",
"type": "module",
"bin": {
"scrum4me-mcp": "./dist/index.js"
},
"files": [
"dist",
"prisma",
"README.md"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"prisma:generate": "prisma generate",
"postinstall": "prisma generate || true",
"typecheck": "tsc --noEmit",
"sync-schema": "bash scripts/sync-schema.sh",
"test": "vitest run"
},
"keywords": [
"mcp",
"scrum4me",
"claude"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"pg": "^8.13.1",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/pg": "^8.11.10",
"prisma": "^7.8.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.5"
}
}