{
    "name": "fetch-helper-x",
    "version": "0.1.8",
    "description": "This package provides some useful utilities and functions for using the Fetch API.",
    "type": "module",
    "exports": "./lib/lib.js",
    "types": "./lib/lib.d.ts",
    "engines": {
        "node": ">=20"
    },
    "files": [
        "lib"
    ],
    "scripts": {
        "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
        "test:coverage": "node --experimental-vm-modules  node_modules/jest/bin/jest.js --coverage",
        "test:inspect-brk": "node --experimental-vm-modules --inspect-brk=0.0.0.0:9230 node_modules/jest/bin/jest.js --testTimeout 0 --runInBand",
        "clean": "rimraf lib",
        "build": "npm run clean && tsc -p tsconfig.build.json",
        "build:watch": "npm run build -- -w",
        "build:webpack": "webpack --mode production",
        "build:src": "node build.js",
        "lint": "eslint src tests",
        "lint:fix": "npm run lint -- --fix",
        "prepare": "git config core.hooksPath .githooks || exit 0",
        "prepack": "npm run build",
        "prepublishOnly": "npm run lint && npm run test"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/magiclen/ts-fetch-helper.git"
    },
    "keywords": [
        "http",
        "fetch",
        "request",
        "timeout",
        "retry"
    ],
    "author": "Magic Len",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/magiclen/ts-fetch-helper/issues"
    },
    "homepage": "https://magiclen.org/fetch-helper/",
    "devDependencies": {
        "@babel/core": "^7.25.8",
        "@babel/preset-env": "^7.25.8",
        "@babel/preset-typescript": "^7.25.7",
        "@babel/register": "^7.25.7",
        "@eslint/js": "^9.13.0",
        "@stylistic/eslint-plugin": "^2.9.0",
        "@types/eslint__js": "^8.42.3",
        "@types/jest": "^29.5.13",
        "@types/node": "^22.7.7",
        "babel-loader": "^9.2.1",
        "eslint": "^9.13.0",
        "eslint-import-resolver-typescript": "^3.6.3",
        "eslint-plugin-import": "^2.31.0",
        "globals": "^15.11.0",
        "jest": "^29.7.0",
        "rimraf": "^6.0.1",
        "terser-webpack-plugin": "^5.3.10",
        "ts-jest": "^29.2.5",
        "typescript": "~5.5.4",
        "typescript-eslint": "^8.10.0",
        "webpack": "^5.95.0",
        "webpack-cli": "^5.1.4"
    }
}