{
  "name": "@fastify/vite",
  "version": "9.1.0",
  "description": "Official Fastify plugin for Vite integration.",
  "keywords": [
    "fastify",
    "vite"
  ],
  "homepage": "https://vite.fastify.dev/",
  "bugs": {
    "url": "https://github.com/fastify/fastify-vite/issues"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fastify/fastify-vite.git"
  },
  "files": [
    "dist/**/*",
    "!dist/**/*.test.*"
  ],
  "type": "module",
  "main": "dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./utils": {
      "types": "./dist/utils.d.ts",
      "import": "./dist/utils.js"
    },
    "./plugin": {
      "types": "./dist/plugin.d.ts",
      "import": "./dist/plugin.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@fastify/deepmerge": "^3.2.1",
    "@fastify/middie": "^9.3.2",
    "@fastify/static": "^9.1.2",
    "fastify-plugin": "^5.1.0",
    "fs-extra": "^11.3.4",
    "klaw": "^4.1.0",
    "package-directory": "^8.2.0"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/klaw": "^3.0.7",
    "@types/node": "^24.12.2",
    "fastify": "^5.8.5",
    "typescript": "^6.0.3",
    "vite": "^8.0.8",
    "vitest": "^4.1.4"
  },
  "peerDependencies": {
    "fastify": ">=5",
    "vite": ">=6"
  },
  "scripts": {
    "build": "tsc",
    "test": "pnpm build && vitest run --no-file-parallelism && vitest --typecheck.only --run"
  }
}