{
  "name": "@opentask/taskin-task-manager",
  "version": "2.0.1",
  "description": "Task lifecycle management for Taskin",
  "type": "module",
  "motivation": "To manage the lifecycle of tasks, including creation, status updates, and retrieval.",
  "solve": "Provides a structured API for interacting with task data, abstracting the underlying storage mechanism.",
  "scope": "core",
  "status": "active",
  "since": "2025-11-05",
  "keywords": [
    "taskin",
    "task-manager",
    "task-management",
    "lifecycle"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sidartaveloso/taskin.git",
    "directory": "packages/task-manager"
  },
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "dependencies": {
    "@opentask/taskin-types": "1.1.1"
  },
  "devDependencies": {
    "typescript": "^5.9.3"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist coverage .turbo",
    "dev": "tsc --watch",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit"
  }
}