{
  "name": "@md2do/core",
  "version": "0.8.0",
  "description": "Core parsing, filtering, scanning, and file writing for md2do",
  "keywords": [
    "markdown",
    "todo",
    "parser",
    "task-management",
    "task",
    "task-parser",
    "markdown-parser",
    "todo-list",
    "task-tracker",
    "filtering",
    "sorting",
    "scanner",
    "library",
    "typescript"
  ],
  "homepage": "https://md2do.com",
  "bugs": "https://github.com/TeamNickHart/md2do/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/TeamNickHart/md2do.git",
    "directory": "packages/core"
  },
  "license": "MIT",
  "author": "Nicholas Hart <nickhart@gmail.com>",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "dependencies": {
    "date-fns": "^3.0.6"
  },
  "devDependencies": {
    "tsup": "^8.0.1"
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
    "test": "vitest",
    "test:run": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:ui": "vitest --ui",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}