{
  "name": "@d1g1tal/transportr",
  "author": "D1g1talEntr0py",
  "version": "3.0.0",
  "license": "MIT",
  "description": "JavaScript wrapper for the Fetch API and more...",
  "homepage": "https://github.com/D1g1talEntr0py/transportr#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/D1g1talEntr0py/transportr.git"
  },
  "bugs": {
    "url": "https://github.com/D1g1talEntr0py/transportr/issues"
  },
  "maintainers": [
    {
      "name": "D1g1talEntr0py",
      "email": "jason.dimeo@gmail.com"
    }
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "type": "module",
  "types": "./dist/transportr.d.ts",
  "exports": {
    ".": {
      "types": "./dist/transportr.d.ts",
      "import": "./dist/transportr.js"
    },
    "./request-header": {
      "types": "./dist/request-header.d.ts",
      "import": "./dist/request-header.js"
    },
    "./response-header": {
      "types": "./dist/response-header.d.ts",
      "import": "./dist/response-header.js"
    },
    "./request-method": {
      "types": "./dist/request-method.d.ts",
      "import": "./dist/request-method.js"
    },
    "./content-type": {
      "types": "./dist/content-type.d.ts",
      "import": "./dist/content-type.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "/dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "dependencies": {
    "@d1g1tal/media-type": "^6.0.6",
    "@d1g1tal/subscribr": "^4.1.11",
    "dompurify": "^3.3.3"
  },
  "peerDependencies": {
    "jsdom": ">=25.0.0"
  },
  "peerDependenciesMeta": {
    "jsdom": {
      "optional": true
    }
  },
  "devDependencies": {
    "@d1g1tal/tsbuild": "^1.7.3",
    "@eslint/eslintrc": "^3.3.5",
    "@eslint/js": "^10.0.1",
    "@types/jsdom": "^28.0.1",
    "@types/node": "^25.5.2",
    "@typescript-eslint/eslint-plugin": "^8.58.0",
    "@typescript-eslint/parser": "^8.58.0",
    "@vitest/coverage-v8": "^4.1.2",
    "@vitest/ui": "^4.1.2",
    "@xmldom/xmldom": "^0.9.9",
    "eslint": "^10.2.0",
    "eslint-plugin-compat": "^7.0.1",
    "eslint-plugin-jsdoc": "^62.9.0",
    "globals": "^17.4.0",
    "jsdom": "^29.0.1",
    "typescript": "^6.0.2",
    "typescript-eslint": "^8.58.0",
    "vitest": "^4.1.2"
  },
  "browserslist": [
    ">0.3% and not dead",
    "defaults and fully supports es6-module",
    "not iOS <= 16.1",
    "node >= 20.0.0"
  ],
  "keywords": [
    "Fetch",
    "HTTP",
    "Request",
    "Response",
    "AbortController",
    "Timeout",
    "EventEmitter",
    "Content-Type",
    "Type-Safe",
    "TypeScript"
  ],
  "scripts": {
    "build": "tsbuild",
    "build:release": "tsbuild --minify --force",
    "build:watch": "tsbuild --watch",
    "type-check": "tsbuild --noEmit",
    "lint": "eslint ./src",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage"
  }
}