{
  "name": "nitro-test-utils",
  "type": "module",
  "version": "3.0.2",
  "description": "Testing toolkit for Nitro full-stack servers",
  "author": "Johann Schopplich <hello@johannschopplich.com>",
  "license": "MIT",
  "homepage": "https://github.com/johannschopplich/nitro-test-utils#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/johannschopplich/nitro-test-utils.git"
  },
  "bugs": {
    "url": "https://github.com/johannschopplich/nitro-test-utils/issues"
  },
  "keywords": [
    "nitro",
    "nuxt",
    "testing",
    "vercel"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    },
    "./config": {
      "types": "./dist/config.d.mts",
      "default": "./dist/config.mjs"
    },
    "./e2e": {
      "types": "./dist/e2e.d.mts",
      "default": "./dist/e2e.mjs"
    },
    "./env": {
      "types": "./env.d.ts"
    }
  },
  "types": "./dist/index.d.mts",
  "files": [
    "dist",
    "env.d.ts"
  ],
  "peerDependencies": {
    "nitro": "^3",
    "vitest": "^4"
  },
  "dependencies": {
    "cookie-es": "^3.1.1",
    "dotenv": "^17.4.2",
    "ofetch": "^2.0.0-alpha.3"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^8.2.0",
    "@types/node": "^24.12.2",
    "bumpp": "^11.0.1",
    "eslint": "^10.2.1",
    "eslint-flat-config-utils": "^3.2.0",
    "nitro": "^3.0.260429-beta",
    "tsdown": "^0.21.10",
    "typescript": "^6.0.3",
    "unbuild": "^3.6.1",
    "vite": "^8.0.10",
    "vitest": "^4.1.5"
  },
  "scripts": {
    "build": "tsdown",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "vitest",
    "test:types": "tsc --noEmit && pnpm -r test:types",
    "release": "bumpp"
  }
}