{
  "name": "@dowser/http-testing",
  "version": "0.11.0",
  "description": "Standalone fetch/XHR controller for Jest and Vitest, used alongside dowser.",
  "type": "module",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/getdowser/dowser.git",
    "directory": "packages/http-testing"
  },
  "bugs": {
    "url": "https://github.com/getdowser/dowser/issues"
  },
  "homepage": "https://github.com/getdowser/dowser/tree/main/packages/http-testing#readme",
  "publishConfig": {
    "access": "public"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./node": {
      "types": "./dist/node.d.ts",
      "default": "./dist/node.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "clean": "rm -rf dist && rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@mswjs/interceptors": "^0.39.0"
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "typescript": "^5.5.0"
  }
}