{"id":35133312,"url":"https://github.com/rtaydev/vizzie-puckeditor","last_synced_at":"2026-01-13T22:02:23.121Z","repository":{"id":331028175,"uuid":"1123861253","full_name":"rtaydev/vizzie-puckeditor","owner":"rtaydev","description":"A modern, customizable visual editor for building web pages. Built on puckeditor with an intuitive theme editor and drag-and-drop interface.","archived":false,"fork":false,"pushed_at":"2025-12-31T15:18:04.000Z","size":1505,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-02T04:46:16.430Z","etag":null,"topics":["editor","nextjs","puck","react","rich-text-editor","visual-editor"],"latest_commit_sha":null,"homepage":"https://vizzie-puckeditor-example.vercel.app/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rtaydev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-27T19:35:53.000Z","updated_at":"2025-12-31T15:18:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/rtaydev/vizzie-puckeditor","commit_stats":null,"previous_names":["rtaydev/vizzie-puckeditor"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/rtaydev/vizzie-puckeditor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtaydev%2Fvizzie-puckeditor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtaydev%2Fvizzie-puckeditor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtaydev%2Fvizzie-puckeditor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtaydev%2Fvizzie-puckeditor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rtaydev","download_url":"https://codeload.github.com/rtaydev/vizzie-puckeditor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rtaydev%2Fvizzie-puckeditor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28400523,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["editor","nextjs","puck","react","rich-text-editor","visual-editor"],"created_at":"2025-12-28T07:33:55.316Z","updated_at":"2026-01-13T22:02:23.113Z","avatar_url":"https://github.com/rtaydev.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Puck Editor\n\nA modern, customizable visual editor for building web pages. Built on [@measured/puck](https://puck.sh) with an intuitive theme editor and drag-and-drop interface.\n\n[![bhpaQ.gif](https://s12.gifyu.com/images/bhpaQ.gif)](https://gifyu.com/image/bhpaQ)\n\n## What is Puck Editor?\n\nPuck Editor is a visual page builder that gives you:\n\n- ✨ **Drag-and-drop interface** for building pages visually\n- 🎨 **Theme editor** with real-time color and typography customization\n- 🎯 **Pre-built blocks** including heroes, features, cards, grids, and more\n- ⚙️ **Full TypeScript support** with comprehensive configuration\n- 💾 **LocalStorage persistence** for automatic data saving\n- 📱 **Responsive design** that works on all devices\n- 🎭 **Design tokens system** for colors, typography, spacing, and shadows\n\n## Packages\n\nThis is a monorepo containing:\n\n### [@puck-editor/visual](./packages/visual)\n\nThe main visual editor component library. A React component for Next.js that provides a complete page builder experience.\n\n**Install:**\n\n```bash\nnpm install @puck-editor/visual @measured/puck react react-dom\n```\n\n**Quick Start:**\n\n```tsx\nimport { PuckEditor } from '@puck-editor/visual';\nimport '@puck-editor/visual/styles.css';\n\nexport default function Editor() {\n\treturn (\n\t\t\u003cPuckEditor\n\t\t\tdata={{ root: {} }}\n\t\t\tonPublish={(data) =\u003e console.log(data)}\n\t\t\toptions={{ sidebarPosition: 'right' }}\n\t\t/\u003e\n\t);\n}\n```\n\nSee [packages/visual/README.md](./packages/visual/README.md) for full documentation.\n\n## Development\n\nThis project uses **pnpm workspaces**.\n\n### Install Dependencies\n\n```bash\npnpm install\n```\n\n### Development\n\n```bash\npnpm dev\n```\n\nRuns all packages in development mode.\n\n### Build\n\n```bash\npnpm build\n```\n\n### Lint \u0026 Type Check\n\n```bash\npnpm lint\npnpm typecheck\n```\n\n## Publishing\n\nTo publish a new version to npm:\n\n```bash\ncd packages/visual\npnpm version patch  # or minor/major\npnpm build\npnpm publish\n```\n\n## License\n\nMIT\n\n## Support\n\nFor issues, questions, or feature requests, please open an issue on GitHub.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtaydev%2Fvizzie-puckeditor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frtaydev%2Fvizzie-puckeditor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frtaydev%2Fvizzie-puckeditor/lists"}