{"_id":"@10xdevs/ogee","_rev":"2-012ed054281aa45fdd14cf805ceaa72f","name":"@10xdevs/ogee","dist-tags":{"latest":"0.1.5"},"versions":{"0.1.0":{"name":"@10xdevs/ogee","version":"0.1.0","keywords":["nextjs","og-image","opengraph","screenshot","agent-browser","cli"],"license":"MIT","_id":"@10xdevs/ogee@0.1.0","maintainers":[{"name":"10xdevs","email":"tanavposwal939@gmail.com"}],"bin":{"ogee":"dist/ogee.js"},"dist":{"shasum":"eed331cce3248676fe356a8880e8770dca1c0331","tarball":"https://registry.npmjs.org/@10xdevs/ogee/-/ogee-0.1.0.tgz","fileCount":4,"integrity":"sha512-I9VOD7Cm4+3Jiug+I8t0LXn1e6Sv0Sv6HCc690Q6dXKaVYmMEFDZdPJLFYKs1XblMJEcVTL7HKwWic2OJiXedg==","signatures":[{"sig":"MEUCIDcZWYPYIT3ZEPSCd95gEYJHB09T3f+yc/YKh3Fiew+QAiEAp9yncVoeTuTHv4QQ6ZzSIJg8hVTOuDnR+ymLoUpbBfo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":10699},"type":"module","engines":{"node":">=20"},"gitHead":"de12d82cf7596a93923c491e148459240db44083","scripts":{"build":"tsc -p tsconfig.json","check":"tsc --noEmit -p tsconfig.json","prepublishOnly":"npm run build"},"_npmUser":{"name":"10xdevs","email":"tanavposwal939@gmail.com"},"_npmVersion":"11.11.1","description":"CLI to boot a Next.js app, capture a full-page screenshot with agent-browser, and save it as an OG image.","directories":{},"_nodeVersion":"25.7.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"typescript":"^5.9.2","@types/node":"^24.5.2"},"_npmOperationalInternal":{"tmp":"tmp/ogee_0.1.0_1774198655428_0.30870770323453955","host":"s3://npm-registry-packages-npm-production"}},"0.1.5":{"name":"@10xdevs/ogee","version":"0.1.5","description":"CLI to boot a Next.js app, capture a full-page screenshot with agent-browser, and save it as an OG image.","type":"module","bin":{"ogee":"dist/ogee.js"},"scripts":{"build":"tsc -p tsconfig.json","check":"tsc --noEmit -p tsconfig.json","prepublishOnly":"npm run build"},"keywords":["nextjs","og-image","opengraph","screenshot","agent-browser","cli"],"license":"MIT","publishConfig":{"access":"public"},"engines":{"node":">=20"},"devDependencies":{"@types/node":"^24.5.2","typescript":"^5.9.2"},"gitHead":"8124c40e84bb4648edbd35d2cb087a5861a0b8d5","_id":"@10xdevs/ogee@0.1.5","_nodeVersion":"25.7.0","_npmVersion":"11.11.1","dist":{"integrity":"sha512-wxw7igKji2AyytaXOx00LDItD1eCtqXXa8n1zCtHdNKntrnzkFfbCVEKGZHlSqmum2mA7R/AhRvp7odGVN0YOw==","shasum":"e177329086821f8e3e9148f68bd0ea8e6a6c08e9","tarball":"https://registry.npmjs.org/@10xdevs/ogee/-/ogee-0.1.5.tgz","fileCount":3,"unpackedSize":10243,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDPuxSg+feuOS7M/yUIM63sUseNArpZalhDPrClx4iFPQIhAOH0k35P8VU1LhvV4tpvTPdsTujKx2ghMWojeToQQE+g"}]},"_npmUser":{"name":"10xdevs","email":"tanavposwal939@gmail.com"},"directories":{},"maintainers":[{"name":"10xdevs","email":"tanavposwal939@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/ogee_0.1.5_1774201007970_0.19526463677155825"},"_hasShrinkwrap":false}},"time":{"created":"2026-03-22T16:57:35.312Z","modified":"2026-03-22T17:36:48.542Z","0.1.0":"2026-03-22T16:57:35.560Z","0.1.5":"2026-03-22T17:36:48.116Z"},"license":"MIT","keywords":["nextjs","og-image","opengraph","screenshot","agent-browser","cli"],"description":"CLI to boot a Next.js app, capture a full-page screenshot with agent-browser, and save it as an OG image.","maintainers":[{"name":"10xdevs","email":"tanavposwal939@gmail.com"}],"readme":"# @10xdevs/ogee\n\nGenerate a clean Open Graph image for a Next.js app with one command.\n\n`@10xdevs/ogee` is a focused CLI that:\n\n1. starts your app with `npm run dev` when needed\n2. reuses an already running app when the target port is live\n3. captures a production-ready OG image with `agent-browser`\n4. writes the result to `app/opengraph-image.png`\n\n## Why\n\nOpen Graph images are repetitive setup work. `ogee` is meant to remove that friction for Next.js projects and give you a solid default path:\n\n- fixed output path: `app/opengraph-image.png`\n- fixed OG size: `1200x630`\n- PNG output for best image quality\n- no prompts for save path or aspect ratio\n\n## Usage\n\n```bash\nnpx @10xdevs/ogee\n```\n\nIf your app is already running on another port:\n\n```bash\nnpx @10xdevs/ogee --port 3001\n```\n\n## What It Does\n\nWhen you run `ogee`, it:\n\n1. checks whether your app is already reachable\n2. starts `npm run dev` if it is not\n3. waits for the app to load\n4. opens the app in `agent-browser`\n5. captures the OG image\n6. saves it to `app/opengraph-image.png`\n\n## Options\n\n```bash\n--port <port>          Use a different local port\n--url <url>            Use a specific app URL\n--wait <ms>            Wait a bit longer before capture\n--keep-server          Leave the dev server running after capture\n```\n\nExamples:\n\n```bash\nnpx @10xdevs/ogee --wait 3000\nnpx @10xdevs/ogee --keep-server\nnpx @10xdevs/ogee --port 3001\n```\n\n## Requirements\n\n- Node.js 20+\n- a Next.js app with `npm run dev`\n- `npx` available in your environment\n\n## Output\n\n`ogee` always writes the generated image to:\n\n```bash\napp/opengraph-image.png\n```\n\nThat matches the standard Next.js App Router OG image location.\n\n## Publish\n\n```bash\nnpm publish --access public\n```\n","readmeFilename":"README.md"}