{
  "name": "@md2do/config",
  "version": "0.7.0",
  "description": "Configuration management for md2do with hierarchical resolution",
  "keywords": [
    "config",
    "configuration",
    "cosmiconfig",
    "settings",
    "markdown",
    "todo",
    "task-management",
    "hierarchical-config",
    "config-loader",
    "validation",
    "zod",
    "typescript"
  ],
  "homepage": "https://md2do.com",
  "bugs": "https://github.com/TeamNickHart/md2do/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/TeamNickHart/md2do.git",
    "directory": "packages/config"
  },
  "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": {
    "cosmiconfig": "^9.0.0",
    "cosmiconfig-typescript-loader": "^5.0.0",
    "zod": "^3.22.4"
  },
  "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"
  }
}