{
  "name": "any-date-parser",
  "version": "2.2.4",
  "description": "Parse a wide range of date formats including human-input dates",
  "tags": [
    "date",
    "datetime",
    "parse",
    "parser",
    "date parser",
    "parse date",
    "human"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE.md"
  ],
  "keywords": [
    "parse date",
    "date parser",
    "date input",
    "date",
    "datetime",
    "date time"
  ],
  "sideEffects": false,
  "scripts": {
    "demo": "bun run build && bunx serve -p 5050 .",
    "test": "TZ=UTC bun test",
    "lint": "biome check",
    "typecheck": "tsc --noEmit",
    "format": "biome check --write",
    "test-watch": "TZ=UTC bun test --watch",
    "are-we-fuzzy-yet": "TZ=UTC bun ./test-fixtures/are-we-fuzzy-yet.ts",
    "build": "bun run build:clean && bun run build:dts && bun run build:esm && bun run build:cjs && bun run build:js",
    "build:clean": "rm -Rf dist/ && mkdir dist",
    "build:dts": "dts-bundle-generator --no-check -o dist/index.d.ts src/main.ts",
    "build:esm": "esbuild src/main.ts --bundle --platform=node --format=esm --outfile=dist/index.mjs",
    "build:cjs": "esbuild src/main.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs",
    "browsers": "open https://www.browsers.fyi",
    "build:js": "esbuild src/main.ts --minify --bundle --target=chrome150,edge149,safari24,firefox152 --outfile=dist/browser-bundle.js",
    "coverage": "TZ=UTC bun test --coverage"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kensnyder/any-date-parser.git"
  },
  "author": {
    "name": "Ken Snyder",
    "email": "kendsnyder@gmail.com"
  },
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/kensnyder/any-date-parser/issues"
  },
  "homepage": "https://github.com/kensnyder/any-date-parser#readme",
  "devDependencies": {
    "@biomejs/biome": "2.5.10",
    "@types/bun": "1.4.0",
    "@types/luxon": "3.7.5",
    "dts-bundle-generator": "9.5.1",
    "esbuild": "0.28.2",
    "luxon": "3.7.2",
    "typescript": "7.0.2"
  }
}
