package.json•1.77 kB
{
"name": "@greirson/mcp-todoist",
"version": "0.8.8",
"description": "MCP server for Todoist API",
"main": "dist/index.js",
"module": "./src/index.ts",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"mcp-todoist": "dist/index.js"
},
"files": [
"dist",
"smithery.yaml"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"preversion": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greirson/mcp-todoist.git"
},
"keywords": [
"mcp",
"todoist",
"claude",
"ai",
"task-management"
],
"author": "greirson",
"license": "MIT",
"bugs": {
"url": "https://github.com/greirson/mcp-todoist/issues"
},
"homepage": "https://github.com/greirson/mcp-todoist#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "1.17.1",
"@doist/todoist-api-typescript": "^5.1.1"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/jest": "^30.0.0",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"jest": "^30.0.5",
"prettier": "^3.5.3",
"shx": "^0.4.0",
"ts-jest": "^29.4.4",
"typescript": "^5.7.2"
}
}