@doist/todoist-ai
Version:
A collection of tools for Todoist using AI
77 lines (76 loc) • 2.5 kB
JSON
{
"name": "@doist/todoist-ai",
"version": "4.9.3",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"mcpName": "net.todoist/mcp",
"bin": {
"todoist-ai": "dist/main.js"
},
"files": [
"dist",
"scripts",
"package.json",
"LICENSE.txt",
"README.md"
],
"license": "MIT",
"description": "A collection of tools for Todoist using AI",
"repository": {
"type": "git",
"url": "https://github.com/Doist/todoist-ai"
},
"keywords": [
"todoist",
"ai",
"tools"
],
"scripts": {
"test": "jest",
"build": "rimraf dist && npx tsc --project tsconfig.json",
"postbuild": "chmod +x dist/main.js",
"start": "npm run build && npx @modelcontextprotocol/inspector node dist/main.js",
"dev": "concurrently \"npx tsc --watch\" \"npx @modelcontextprotocol/inspector npx nodemon --quiet --watch dist --ext js --exec node dist/main.js\"",
"setup": "cp .env.example .env && npm install && npm run build",
"test:executable": "npm run build && node scripts/test-executable.cjs",
"type-check": "npx tsc --noEmit",
"biome:sort-imports": "biome check --formatter-enabled=false --linter-enabled=false --organize-imports-enabled=true --write .",
"lint:check": "biome lint",
"lint:write": "biome lint --write",
"format:check": "biome format",
"format:write": "biome format --write",
"check": "biome check",
"check:fix": "biome check --fix --unsafe",
"prepare": "husky"
},
"dependencies": {
"@doist/todoist-api-typescript": "5.5.1",
"@modelcontextprotocol/sdk": "^1.11.1",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"zod": "^3.25.7"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@types/express": "^5.0.2",
"@types/jest": "30.0.0",
"@types/morgan": "^1.9.9",
"@types/node": "^22.15.17",
"concurrently": "^9.0.0",
"express": "^5.0.0",
"husky": "^9.1.7",
"jest": "30.2.0",
"lint-staged": "^16.0.0",
"morgan": "^1.10.0",
"nodemon": "^3.1.10",
"rimraf": "^6.0.1",
"ts-jest": "29.4.4",
"typescript": "^5.8.3"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}