2025-04-11 15:45:35 +08:00
{
"name" : "mcp-shrimp-task-manager" ,
2025-07-06 20:50:26 +08:00
"version" : "1.0.21" ,
2025-04-18 12:46:06 +08:00
"description" : "Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems" ,
2025-04-11 15:45:35 +08:00
"main" : "dist/index.js" ,
"type" : "module" ,
2025-04-18 12:46:06 +08:00
"repository" : {
"type" : "git" ,
"url" : "https://github.com/cjo4m06/mcp-shrimp-task-manager"
} ,
"bugs" : {
"url" : "https://github.com/cjo4m06/mcp-shrimp-task-manager/issues"
} ,
"homepage" : "https://cjo4m06.github.io/mcp-shrimp-task-manager" ,
"bin" : {
2025-04-18 13:06:26 +08:00
"mcp-shrimp-task-manager" : "./dist/index.js"
2025-04-18 12:46:06 +08:00
} ,
2025-04-11 15:45:35 +08:00
"scripts" : {
2025-05-28 12:20:35 +08:00
"build" : "tsc && copyfiles -u 1 \"src/**/*.md\" dist && copyfiles -u 1 \"src/public/**/*\" dist && node scripts/add-shebang.js" ,
2025-04-15 19:02:28 +08:00
"dev" : "ts-node src/index.ts" ,
2025-04-11 15:45:35 +08:00
"start" : "node dist/index.js" ,
"test" : "echo \"Error: no test specified\" && exit 1"
} ,
"keywords" : [
"mcp" ,
"task-manager" ,
"agent" ,
"workflow"
] ,
"author" : "" ,
"license" : "MIT" ,
"dependencies" : {
"@modelcontextprotocol/sdk" : "^1.0.0" ,
2025-04-15 19:02:28 +08:00
"dotenv" : "^16.5.0" ,
2025-04-29 19:40:20 +08:00
"express" : "^5.1.0" ,
"get-port" : "^7.1.0" ,
2025-04-11 15:45:35 +08:00
"uuid" : "^9.0.1" ,
2025-04-19 19:37:29 +08:00
"zod" : "^3.22.4" ,
"zod-to-json-schema" : "^3.24.5"
2025-04-11 15:45:35 +08:00
} ,
"devDependencies" : {
2025-04-29 19:40:20 +08:00
"@types/express" : "^5.0.1" ,
2025-04-11 15:45:35 +08:00
"@types/node" : "^20.8.2" ,
"@types/uuid" : "^9.0.6" ,
2025-04-26 19:58:52 +08:00
"copyfiles" : "^2.4.1" ,
2025-04-15 19:02:28 +08:00
"ts-node" : "^10.9.2" ,
2025-04-11 15:45:35 +08:00
"typescript" : "^5.2.2"
}
}