{
    "name": "ts-luxon",
    "version": "6.2.0",
    "author": "Tony Samperi",
    "description": "Typescript version of the \"Immutable date wrapper\"",
    "type": "module",
    "typings": "./dist/types/index.d.cts",
    "main": "./dist/cjs/index.cjs",
    "module": "./dist/esm/index.js",
    "unpkg": "./dist/cjs/index.cjs",
    "exports": {
        ".": {
            "import": {
                "types": "./dist/types/index.d.ts",
                "default": "./dist/esm/index.js"
            },
            "require": {
                "types": "./dist/types/index.d.cts",
                "default": "./dist/cjs/index.cjs"
            },
            "browser": {
                "types": "./dist/types/index.d.ts",
                "default": "./dist/esm/index.js"
            }
        },
        "./package.json": "./package.json"
    },
    "sideEffects": false,
    "files": [
        "dist/**",
        "!dist/raw-esm/**",
        "README.md"
    ],
    "engines": {
        "node": ">=18"
    },
    "scripts": {
        "benchmark": "ts-node benchmarks/index.ts",
        "build": "npm run clean && NODE_ENV=production node build.config.mjs",
        "clean": "rimraf dist",
        "codecov": "codecov",
        "check-doc-coverage": "grep '\"coverage\": \"100%\"' dist/docs/coverage.json",
        "jest": "jest",
        "lint": "eslint && tsc --noEmit",
        "prepublishOnly": "node ./test/test-dist.mjs",
        "publish:beta": "npm publish --tag beta",
        "publish:next": "npm publish --tag next",
        "test": "jest --coverage",
        "typedoc": "typedoc src/index.ts --excludePrivate --excludeProtected --out dist/api-docs "
    },
    "homepage": "https://tonysamperi.github.io/ts-luxon/",
    "license": "MIT",
    "keywords": [
        "date",
        "immutable",
        "typescript",
        "luxon",
        "ts-luxon"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/tonysamperi/ts-luxon.git"
    },
    "devDependencies": {
        "@types/benchmark": "^2.1.0",
        "@types/jest": "^29.5.4",
        "@typescript-eslint/eslint-plugin": "^6.4.1",
        "@typescript-eslint/parser": "^6.4.1",
        "codecov": "^3.8.3",
        "esbuild": "^0.25.1",
        "eslint": "^8.57.1",
        "eslint-plugin-import": "^2.31.0",
        "jest": "^29.6.4",
        "replace-in-file": "^8.3.0",
        "rimraf": "^5.0.7",
        "ts-jest": "^29.1.1",
        "ts-loader": "^9.5.1",
        "ts-node": "^10.9.2",
        "tslib": "^2.0.0",
        "typedoc": "^0.27.9",
        "typescript": "~5.3.0"
    },
    "packageManager": "yarn@4.7.0"
}
