{
  "name": "@spacefast/next-adapter",
  "version": "0.0.26",
  "license": "MIT",
  "description": "Next.js deployment adapter that records what `next build` produced as Spacefast build facts.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/spacefast/monorepo.git",
    "directory": "packages/next-adapter"
  },
  "type": "module",
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "bun": ">=1.3.11",
    "node": ">=20"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "node scripts/clean-dist.mjs && tsc -b tsconfig.build.json",
    "prepack": "bun run build",
    "test": "bun test ./src/*.test.ts",
    "typecheck": "tsc --project tsconfig.json --noEmit"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./manifest": {
      "types": "./dist/manifest.d.ts",
      "import": "./dist/manifest.js"
    },
    "./next-types": {
      "types": "./dist/next-types.d.ts",
      "import": "./dist/next-types.js"
    }
  },
  "dependencies": {
    "@spacefast/adapter-kit": "workspace:*",
    "@spacefast/build-output": "workspace:*"
  },
  "devDependencies": {
    "@types/node": "^25.6.0",
    "typescript": "^6.0.3"
  },
  "peerDependencies": {
    "next": ">=16.2.0"
  },
  "peerDependenciesMeta": {
    "next": {
      "optional": true
    }
  }
}
