{
  "name": "@wojtekmaj/date-utils",
  "version": "1.1.3",
  "description": "A collection of date-related utilities.",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "source": "src/index.ts",
  "types": "dist/cjs/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "build": "yarn build-esm && yarn build-cjs",
    "build-esm": "tsc --project tsconfig.build.json --outDir dist/esm --module esnext",
    "build-cjs": "tsc --project tsconfig.build.json --outDir dist/cjs --module commonjs",
    "clean": "rimraf dist",
    "jest": "jest",
    "lint": "eslint .",
    "prepack": "yarn clean && yarn build",
    "prettier": "prettier --check . --cache",
    "test": "yarn lint && yarn tsc && yarn prettier && yarn jest",
    "tsc": "tsc --noEmit"
  },
  "keywords": [
    "date",
    "utils"
  ],
  "author": {
    "name": "Wojciech Maj",
    "email": "kontakt@wojtekmaj.pl"
  },
  "license": "MIT",
  "devDependencies": {
    "@babel/core": "^7.15.0",
    "@babel/preset-env": "^7.15.0",
    "@babel/preset-typescript": "^7.18.6",
    "@types/jest": "^29.0.0",
    "@typescript-eslint/eslint-plugin": "^5.41.0",
    "@typescript-eslint/parser": "^5.44.0",
    "eslint": "^8.26.0",
    "eslint-config-wojtekmaj": "^0.7.1",
    "husky": "^8.0.0",
    "jest": "^29.0.0",
    "prettier": "^2.7.0",
    "pretty-quick": "^3.1.0",
    "rimraf": "^3.0.0",
    "typescript": "^4.9.4"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/wojtekmaj/date-utils.git"
  },
  "funding": "https://github.com/wojtekmaj/date-utils?sponsor=1",
  "packageManager": "yarn@3.1.0"
}