package.json•1.47 kB
{
"name": "tududi-mcp",
"version": "0.1.0",
"description": "Model Context Protocol server for Tududi task management",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"tududi",
"task-management",
"ai",
"visual-studio"
],
"author": "Jerry Tunin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jerrytunin/tududi-mcp.git"
},
"bugs": {
"url": "https://github.com/jerrytunin/tududi-mcp/issues"
},
"homepage": "https://github.com/jerrytunin/tududi-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"pino": "^8.16.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"pino-pretty": "^10.2.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0"
}
}