Files
pbakaus_impeccable/package.json
T
Paul BakausandClaude Opus 4.6 a94e237359 Replace static OG image with auto-generated JPEG using site fonts
Add scripts/generate-og-image.js that renders the OG image with Playwright
using the actual site fonts (Cormorant Garamond, Instrument Sans, Space
Grotesk) and dynamically counts skills/commands from source/. Switch from
PNG to JPEG (512 KB → 25 KB). Run with `bun run og-image`.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-04 09:52:14 -08:00

32 lines
792 B
JSON

{
"name": "impeccable",
"version": "1.1.0",
"author": "Paul Bakaus",
"dependencies": {
"motion": "^12.23.26",
"playwright": "^1.57.0"
},
"description": "Cross-provider design skills and commands for LLM-powered development tools",
"keywords": [
"cursor",
"claude",
"gemini",
"codex",
"design",
"frontend",
"ux"
],
"license": "SEE LICENSE FILE",
"scripts": {
"build": "bun run scripts/build.js",
"clean": "rm -rf dist",
"rebuild": "bun run clean && bun run build",
"dev": "bun run server/index.js",
"start": "bun --production run server/index.js",
"test": "bun test",
"screenshot": "bun run scripts/screenshot-antipatterns.js",
"og-image": "bun run scripts/generate-og-image.js"
},
"type": "module"
}