{
  "name": "temporal-utils",
  "version": "1.0.1",
  "title": "Temporal Utils",
  "description": "Convenience helpers for native Temporal objects",
  "author": {
    "name": "Adam Shaw",
    "email": "arshaw@users.noreply.github.com",
    "url": "http://arshaw.com/"
  },
  "license": "MIT",
  "copyright": "2026 Adam Shaw",
  "repository": {
    "type": "git",
    "url": "https://github.com/fullcalendar/temporal-polyfill.git",
    "directory": "utils"
  },
  "files": [
    "dist",
    "!dist/*.tsbuildinfo"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./protected": {
      "types": "./dist/protected.d.ts",
      "import": "./dist/protected.js"
    },
    "./protected-error-messages": {
      "types": "./dist/protected-error-messages.d.ts",
      "import": "./dist/protected-error-messages.js"
    }
  },
  "type": "module",
  "devDependencies": {
    "@biomejs/biome": "1.5.1",
    "@js-temporal/polyfill": "^0.5.1",
    "typescript": "~5.3.3",
    "vitest": "^1.2.2",
    "temporal-spec": "1.0.0"
  },
  "scripts": {
    "build": "pnpm run clean && tsc --build tsconfig.build.json",
    "dev": "pnpm run clean && tsc --build tsconfig.dev.json --watch",
    "lint": "biome check .",
    "lint:fix": "biome check --apply .",
    "test": "pnpm run vitest",
    "vitest": "./scripts/vitest.js",
    "vitest:dev": "vitest dev",
    "vitest:debug": "vitest run --no-isolate --no-file-parallelism --test-timeout 3600000",
    "clean": "rm -rf dist"
  }
}