{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@gentleduck/calendar",
  "version": "0.4.0",
  "description": "Headless, framework-agnostic calendar engine with date adapter pattern.",
  "type": "module",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./adapter": {
      "types": "./dist/adapter/index.d.ts",
      "default": "./dist/adapter/index.js"
    },
    "./grid": {
      "types": "./dist/grid/index.d.ts",
      "default": "./dist/grid/index.js"
    },
    "./selection": {
      "types": "./dist/selection/index.d.ts",
      "default": "./dist/selection/index.js"
    },
    "./navigation": {
      "types": "./dist/navigation/index.d.ts",
      "default": "./dist/navigation/index.js"
    },
    "./time": {
      "types": "./dist/time/index.d.ts",
      "default": "./dist/time/index.js"
    },
    "./react": {
      "types": "./dist/react/index.d.ts",
      "default": "./dist/react/index.js"
    },
    "./calendar-system": {
      "types": "./dist/calendar-system/index.d.ts",
      "default": "./dist/calendar-system/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "tsconfig.json"
  ],
  "sideEffects": false,
  "private": false,
  "license": "MIT",
  "author": "gentleduck contributors",
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gentleeduck/gentleduck.git",
    "directory": "packages/duck-calendar"
  },
  "bugs": {
    "url": "https://github.com/gentleeduck/gentleduck/issues"
  },
  "homepage": "https://gentleduck.org/duck-ui",
  "keywords": [
    "gentleduck",
    "calendar",
    "date-adapter",
    "headless"
  ],
  "scripts": {
    "benchmark": "bun run scripts/benchmark.ts",
    "build": "tsdown",
    "check": "biome check .",
    "check-types": "tsc -p tsconfig.json --noEmit --pretty false --skipLibCheck",
    "dev": "vitest",
    "fix": "biome check --write .",
    "format": "biome format --write .",
    "lint": "biome lint .",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:watch": "vitest"
  },
  "devDependencies": {
    "@gentleduck/tsdown-config": "workspace:*",
    "@gentleduck/typescript-config": "workspace:*",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@types/luxon": "^3.6.2",
    "@types/node": "catalog:",
    "@types/react": "catalog:react19",
    "@types/react-dom": "catalog:react19",
    "dayjs": "^1.11.13",
    "jsdom": "catalog:",
    "luxon": "^3.6.1",
    "react": "catalog:react19",
    "react-dom": "catalog:react19",
    "tsdown": "catalog:",
    "typescript": "catalog:",
    "vitest": "catalog:"
  },
  "peerDependencies": {
    "date-fns": ">=3.0.0",
    "dayjs": ">=1.11.0",
    "luxon": ">=3.0.0",
    "react": ">=18.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    },
    "date-fns": {
      "optional": true
    },
    "dayjs": {
      "optional": true
    },
    "luxon": {
      "optional": true
    }
  }
}
