package.json•1.21 kB
{
"name": "todoist-mcp-server",
"version": "1.0.7",
"description": "MCP server for Todoist API",
"main": "dist/server.js",
"bin": {
"todoist-mcp-server": "./dist/server.js"
},
"files": [
"dist",
"smithery.yaml"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts"
},
"homepage": "https://github.com/stevengonsalvez/todoist-mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/stevengonsalvez/todoist-mcp.git"
},
"author": {
"name": "Steven Gonsalvez",
"url": "https://github.com/stevengonsalvez"
},
"keywords": [
"todoist",
"mcp",
"model-context-protocol",
"claude",
"task-management",
"productivity",
"api"
],
"license": "MIT",
"dependencies": {
"@doist/todoist-api-typescript": "^2.1.2",
"@modelcontextprotocol/sdk": "^1.9.0",
"@types/node-fetch": "^2.6.12",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.4",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
}
}