{
  "name": "@astroscope/boot",
  "version": "0.8.0",
  "description": "Startup and graceful shutdown hooks for Astro SSR",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./events": {
      "types": "./dist/lifecycle/events.d.ts",
      "import": "./dist/lifecycle/events.js"
    },
    "./middleware": {
      "types": "./dist/watch/middleware-entrypoint.d.ts",
      "import": "./dist/watch/middleware-entrypoint.js"
    },
    "./prepend": {
      "types": "./dist/prepend.d.ts",
      "import": "./dist/prepend.js"
    },
    "./setup": {
      "types": "./dist/setup.d.ts",
      "import": "./dist/setup.js"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/entwico/astroscope",
    "directory": "packages/boot"
  },
  "keywords": [
    "astro",
    "astro-integration",
    "boot",
    "frameworks"
  ],
  "author": "admin@entwico.com",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/entwico/astroscope/issues"
  },
  "homepage": "https://github.com/entwico/astroscope/tree/main/packages/boot#readme",
  "devDependencies": {
    "astro": "^6.2.2",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3"
  },
  "peerDependencies": {
    "astro": "^6.0.0",
    "vite": "^7.0.0"
  },
  "dependencies": {
    "magic-string": "^0.30.21"
  },
  "scripts": {
    "build": "tsup src/index.ts src/lifecycle/events.ts src/lifecycle/lifecycle.ts src/watch/middleware-entrypoint.ts src/setup.ts src/prepend.ts --format esm,cjs --dts --onSuccess 'cp src/watch/restart-page.html dist/'",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix"
  }
}