{"id":19170475,"url":"https://github.com/saurabhdaware/bsky-widget","last_synced_at":"2026-03-05T19:37:24.303Z","repository":{"id":261821324,"uuid":"884863294","full_name":"saurabhdaware/bsky-widget","owner":"saurabhdaware","description":"Unofficial Bluesky widget to render cute profile cards in your websites ^_^","archived":false,"fork":false,"pushed_at":"2024-11-22T15:19:05.000Z","size":3549,"stargazers_count":69,"open_issues_count":3,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-10T05:06:27.411Z","etag":null,"topics":["bluesky","vite","webcomponent","widget"],"latest_commit_sha":null,"homepage":"https://bsky-widget.srbh.dev/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/saurabhdaware.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"saurabhdaware","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2024-11-07T14:23:19.000Z","updated_at":"2025-04-06T19:04:47.000Z","dependencies_parsed_at":"2024-11-08T16:45:39.238Z","dependency_job_id":"cd0a99d5-e6f4-4ef4-a9fa-6fdade6791c6","html_url":"https://github.com/saurabhdaware/bsky-widget","commit_stats":null,"previous_names":["saurabhdaware/bsky-widget"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saurabhdaware%2Fbsky-widget","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saurabhdaware%2Fbsky-widget/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saurabhdaware%2Fbsky-widget/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/saurabhdaware%2Fbsky-widget/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/saurabhdaware","download_url":"https://codeload.github.com/saurabhdaware/bsky-widget/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248161274,"owners_count":21057555,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["bluesky","vite","webcomponent","widget"],"created_at":"2024-11-09T09:54:03.267Z","updated_at":"2026-03-05T19:37:19.263Z","avatar_url":"https://github.com/saurabhdaware.png","language":"TypeScript","readme":"# Bluesky Widget\n\nUnofficial Bluesky Profile Cards for Bluesky Friends 🦋\n\n**Card Generator UI: https://bsky-widget.srbh.dev/**\n\n## Usage\n\n\u003ctable\u003e\n\u003ctr\u003e\n  \u003cth\u003eCode\u003c/th\u003e\n  \u003cth\u003ePreview\u003c/th\u003e\n\u003c/tr\u003e\n  \n\u003ctr\u003e\n\u003ctd\u003e\n\n```html\n\u003c!-- Paste in your CSS to avoid layout shift --\u003e\n\u003cstyle\u003e\n  bsky-widget {\n    min-height: 387px;\n    width: 350px;\n  }\n\u003c/style\u003e\n\n\u003c!-- Paste wherever you want to render the card --\u003e\n\u003cbsky-widget handle=\"patak.dev\"\u003e\u003c/bsky-widget\u003e\n\n\u003c!-- Paste before end of body --\u003e\n\u003cscript\n  src=\"https://unpkg.com/bsky-widget@~0.1/dist/index.js\"\n  type=\"module\"\n\u003e\u003c/script\u003e\n```\n\n\u003c/td\u003e\n\n\u003ctd\u003e\n\u003cimg alt=\"Patak's Bluesky Profile Widget\" src=\"/.github/repo-assets/card-preview.png\" width=\"300px\" /\u003e\n\u003c/td\u003e\n\n\u003c/tr\u003e\n\u003c/table\u003e\n\n## Usage as NPM module\n\n### Install\n\n```sh\nnpm install bsky-widget@latest --save\n```\n\n### Import and Use\n\n```jsx\nimport \"bsky-widget\";\n\n\u003cbsky-widget handle=\"srbh.dev\"\u003e\u003c/bsky-widget\u003e;\n```\n\n## Props\n\n| Prop             | Description                                                    | Example value               |\n| :--------------- | :------------------------------------------------------------- | :-------------------------- |\n| handle           | handle of your bluesky account                                 | \"srbh.dev\"                  |\n| show-description | hide / show your description / bio from profile                | \"true\" (default) or \"false\" |\n| show-banner      | hide / show your banner (only applicable if you have a banner) | \"true\" (default) or \"false\" |\n| theme            | theme of the card (`dark`, `dim`, `auto`, `auto-dim`, `light`) | \"light\"                     |\n\n\n## Override Styles\n\nYou can go ahead and override any of these styles to customize your card further, create custom themes, or adjust the card in your website's layout\n\n```css\nbsky-widget {\n  --bsky-background: #fff;\n  --bsky-primary: #1185fe;\n  --bsky-primary-hover: #4ca2fe;\n  --bsky-text-on-primary: #fff;\n  --bsky-text-on-background: #0b0f14;\n  --bsky-text-on-background-subtle: #42576c;\n  --bsky-text-large: 1.4rem;\n  --bsky-text-large-line-height: 1.8rem;\n  --bsky-text-medium: 1rem;\n  --bsky-text-small: 0.9rem;\n\n  font-family: Arial, Helvetica, sans-serif, -apple-system, sans-serif;\n  width: 350px;\n  max-width: 100%;\n  min-height: 170px;\n  display: inline-block;\n  box-shadow: 1px 1px 8px 1px #0002;\n  border-radius: 8px;\n}\n```\n\n## Migration from v0.0 -\u003e v0.1\n\n\u003e [!Note]\n\u003e\n\u003e You are using v0.0 already? no worries! It's a no breaking change release. Click the link below to see how you can migrate to new version and enjoy new features 🚀\n\nCheck out the release notes at [v0.1 Release Notes](https://github.com/saurabhdaware/bsky-widget/releases/tag/v0.1.0)\n\n\n## CONTRIBUTING\n\nThe project is open for contributions, you can check [CONTRIBUTING.md](./CONTRIBUTING.md) for more information on local setup and commands.\n\n---\n\nLike my work? You can star this repo or you can sponsor me from [GitHub Sponsors @saurabhdaware](https://github.com/sponsors/saurabhdaware) ⭐️\n","funding_links":["https://github.com/sponsors/saurabhdaware"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaurabhdaware%2Fbsky-widget","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsaurabhdaware%2Fbsky-widget","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsaurabhdaware%2Fbsky-widget/lists"}