{
  "name": "todoist-ts-cli",
  "version": "0.2.0",
  "description": "Unofficial CLI for Todoist using the official TypeScript SDK",
  "author": "Matt Russell <matthewjosephrussell@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/mjrussell/todoist-ts-cli"
  },
  "bugs": {
    "url": "https://github.com/mjrussell/todoist-ts-cli/issues"
  },
  "homepage": "https://github.com/mjrussell/todoist-ts-cli#readme",
  "keywords": [
    "todoist",
    "cli",
    "tasks",
    "todo",
    "productivity",
    "unofficial"
  ],
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "todoist": "./dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "npm run build && node --test",
    "typecheck": "tsc --noEmit",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "@doist/todoist-api-typescript": "^6.2.1",
    "commander": "^13.0.0"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "tsup": "^8.3.5",
    "typescript": "^5.7.0"
  }
}
