{
    "name": "@supercat1337/fetcher",
    "version": "3.0.0",
    "description": "Advanced fetch utility with cancellation, smart retry with error filtering, singleton requests, and full TypeScript support.",
    "scripts": {
        "clean": "shx rm -rf ./dist && shx mkdir ./dist",
        "build_esm": "rollup ./src/index.js --file ./dist/fetcher.esm.js --format es",
        "gen_types": "npx tsc --project my.tsconfig.types.json",
        "bundle_types": "node scripts/bundle-types.js",
        "build": "npm run clean && npm run build_esm && npm run gen_types && npm run bundle_types && shx rm -rf dist/types-temp",
        "lint": "npx eslint src/ tests/ scripts/",
        "lint_fix": "npm run lint -- --fix",
        "test": "c8 ava",
        "test:watch": "ava --watch",
        "coverage": "c8 report --reporter=html"
    },
    "license": "MIT",
    "author": "Albert Bazaleev",
    "type": "module",
    "main": "dist/fetcher.esm.js",
    "types": "dist/types.d.ts",
    "keywords": [
        "fetch",
        "retry",
        "cancellation",
        "abort",
        "singleton",
        "http-client",
        "typescript",
        "esm"
    ],
    "exports": {
        ".": {
            "types": "./dist/types.d.ts",
            "import": "./dist/fetcher.esm.js"
        },
        "./package.json": "./package.json"
    },
    "homepage": "https://github.com/supercat1337/fetcher",
    "repository": {
        "url": "git+https://github.com/supercat1337/fetcher.git"
    },
    "devDependencies": {
        "@eslint/js": "^9.18.0",
        "@rollup/plugin-alias": "^6.0.0",
        "ava": "^7.0.0",
        "c8": "^11.0.0",
        "eslint": "^9.18.0",
        "eslint-plugin-eqeqeq-fix": "^1.0.3",
        "eslint-plugin-eslint-plugin": "^7.4.0",
        "eslint-plugin-jsdoc": "^63.0.7",
        "globals": "^17.7.0",
        "rollup": "^4.60.1",
        "shx": "^0.4.0"
    },
    "files": [
        "dist/types.d.ts",
        "dist/fetcher.esm.js",
        "README.md",
        "LICENSE"
    ],
    "ava": {
        "files": [
            "tests/unit/**/*.test.js"
        ],
        "modules": true
    }
}
