package.json•1.67 kB
{
"name": "mcp-todoist",
"version": "1.0.0",
"description": "MCP server enabling programmatic Todoist task and project management through optimized tool set",
"main": "dist/server.js",
"type": "module",
"bin": {
"mcp-todoist": "./dist/server.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc && chmod 755 dist/server.js",
"start": "node dist/server.js",
"dev": "tsx src/server.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write src tests",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"todoist",
"task-management",
"productivity",
"model-context-protocol"
],
"author": "Shayon Pal",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/shayonpal/mcp-todoist.git"
},
"homepage": "https://shayonpal.com",
"bugs": {
"url": "https://github.com/shayonpal/mcp-todoist/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.2",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"uuid": "^13.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
}
}