{
  "name": "@gibme/fetch",
  "version": "22.1.0",
  "description": "A simple wrapper that extends functionality around the fetch interface",
  "main": "dist/node.js",
  "types": "dist/node.d.ts",
  "exports": {
    ".": "./dist/node.js",
    "./browser": "./dist/web.js",
    "./node": "./dist/node.js"
  },
  "typesVersions": {
    "*": {
      "browser": [
        "./dist/web.d.ts"
      ],
      "node": [
        "./dist/node.d.ts"
      ]
    }
  },
  "files": [
    "dist/*"
  ],
  "license": "MIT",
  "scripts": {
    "build": "yarn build:typescript",
    "build:docs": "./node_modules/.bin/typedoc",
    "build:typescript": "./node_modules/.bin/tsc",
    "build:webpack": "./node_modules/.bin/auto-pack",
    "test": "yarn test:style && yarn test:typecheck && yarn test:units",
    "test:typecheck": "./node_modules/.bin/tsc --noEmit",
    "test:style": "yarn style",
    "test:units": "node --import tsx --test --test-timeout 480000 test/test.ts",
    "style": "./node_modules/.bin/eslint src/**/*.ts test/**/*.ts",
    "fix-style": "./node_modules/.bin/eslint --fix src/**/*.ts test/**/*.ts",
    "fix:style": "yarn fix-style",
    "prepublishOnly": "yarn build && yarn build:webpack"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gibme-npm/fetch.git"
  },
  "bugs": {
    "url": "https://github.com/gibme-npm/fetch/issues"
  },
  "engines": {
    "node": ">=22"
  },
  "engineStrict": true,
  "author": {
    "name": "Brandon Lehmann",
    "email": "brandonlehmann@gmail.com"
  },
  "webpack": {
    "entry": {
      "Fetch": "./src/web.ts"
    },
    "filename": "[name].min.js"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.5",
    "@eslint/js": "^10.0.1",
    "@gibme/auto-pack": "^22.0.1",
    "@types/node": "^25.5.2",
    "@typescript-eslint/eslint-plugin": "^8.58.0",
    "@typescript-eslint/parser": "^8.58.0",
    "eslint": "^10.1.0",
    "eslint-config-standard": "^17.1.0",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-n": "^17.24.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^7.2.1",
    "globals": "^17.4.0",
    "tsx": "^4.21.0",
    "typedoc": "^0.28.18",
    "typescript": "^6.0.2"
  },
  "dependencies": {
    "@types/cookiejar": "^2.1.5",
    "@types/tough-cookie": "^4.0.5",
    "abort-controller": "^3.0.0",
    "buffer": "^6.0.3",
    "cross-fetch": "^4.1.0",
    "fetch-cookie": "^3.2.0",
    "tough-cookie": "^6.0.1"
  }
}
