{
  "name": "@wyattjoh/astro-bun-adapter",
  "version": "2.1.1",
  "description": "Astro adapter for Bun with optimized static file serving and ISR support",
  "type": "module",
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/wyattjoh/astro-bun-adapter.git"
  },
  "homepage": "https://github.com/wyattjoh/astro-bun-adapter#readme",
  "bugs": {
    "url": "https://github.com/wyattjoh/astro-bun-adapter/issues"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/",
    "tag": "latest",
    "provenance": true
  },
  "exports": {
    ".": "./dist/index.js",
    "./server.js": "./dist/server.js",
    "./cache": "./dist/cache.js",
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "!dist/**/*.test.*",
    "LICENSE",
    "README.md"
  ],
  "license": "MIT",
  "author": "Wyatt Johnson",
  "scripts": {
    "build": "bunup",
    "test": "bun test --concurrent src/",
    "typecheck": "tsc -p . --noEmit",
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "format": "biome format --write .",
    "prepare": "husky",
    "prepack": "bun run build"
  },
  "keywords": [
    "astro-adapter",
    "bun",
    "withastro"
  ],
  "dependencies": {
    "cache-control-parser": "^2.2.0",
    "cbor2": "^2.3.0",
    "debug": "^4.4.3",
    "mrmime": "^2.0.1"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.15",
    "@types/bun": "^1.3.13",
    "@types/debug": "^4.1.13",
    "astro": "^6.3.1",
    "bunup": "^0.16.31",
    "husky": "^9.1.7",
    "typescript": "^6.0.3"
  },
  "peerDependencies": {
    "astro": "^6.3.1"
  },
  "engines": {
    "bun": ">=1.0.0",
    "node": ">=22.12.0"
  }
}
