package.json•1.74 kB
{
"name": "teamretro-mcp-server",
"version": "0.10.1",
"type": "module",
"main": "dist/index.js",
"bin": "./dist/index.js",
"description": "MCP Server for TeamRetro integration, providing API services and tools for team management and analytics",
"keywords": [
"mcp",
"teamretro",
"api",
"server",
"integration",
"retrospective",
"meeting",
"tools"
],
"author": {
"name": "Ade Pangestu",
"email": "adepanges@gmail.com",
"url": "https://github.com/adepanges"
},
"contributors": [
{
"name": "Ade Pangestu",
"email": "adepanges@gmail.com",
"url": "https://github.com/adepanges"
}
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/adepanges/teamretro-mcp-server"
},
"bugs": {
"url": "https://github.com/adepanges/teamretro-mcp-server/issues"
},
"homepage": "https://github.com/adepanges/teamretro-mcp-server",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"llms-install.md"
],
"scripts": {
"watch": "rimraf dist && concurrently -k -n TSC,ALIAS \"tsc -w\" \"tsc-alias -w\"",
"inspector": "npm run build && ./scripts/run-inspector.sh",
"build": "rimraf dist && tsc && tsc-alias",
"start": "node dist/index.js",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"env-var": "^7.5.0",
"markdown-table": "^3.0.4"
},
"devDependencies": {
"@types/node": "^20.17.19",
"concurrently": "^9.1.2",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.11",
"typescript": "^5.0.0"
}
}