{"id":15982251,"url":"https://github.com/playform/convert","last_synced_at":"2026-01-28T16:14:28.958Z","repository":{"id":189004643,"uuid":"676970646","full_name":"PlayForm/Convert","owner":"PlayForm","description":"Convert 🫶🏻","archived":false,"fork":false,"pushed_at":"2025-08-30T01:44:29.000Z","size":1011,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"Current","last_synced_at":"2025-08-30T01:53:11.711Z","etag":null,"topics":["astro","astro-component","astro-convert","astro-integration","convert","playform","withastro"],"latest_commit_sha":null,"homepage":"https://GitHub.Com/PlayForm/Convert","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/PlayForm.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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},"funding":{"custom":"https://buy.stripe.com/3csdQZfzn2LDaBOcMN","open_collective":"playform-cloud-collective"}},"created_at":"2023-08-10T12:41:19.000Z","updated_at":"2025-08-30T01:44:32.000Z","dependencies_parsed_at":"2023-10-12T06:10:59.956Z","dependency_job_id":"9920d6bb-3051-48b1-9606-4bf012684a0e","html_url":"https://github.com/PlayForm/Convert","commit_stats":{"total_commits":624,"total_committers":7,"mean_commits":89.14285714285714,"dds":"0.33974358974358976","last_synced_commit":"bc64dbcf1848ce9437e9e077a8ab9754d26a38bc"},"previous_names":["nikolarhristov/astroconvert","playform/astroconvert","playform/convertastro","playform/convert"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/PlayForm/Convert","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlayForm%2FConvert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlayForm%2FConvert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlayForm%2FConvert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlayForm%2FConvert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PlayForm","download_url":"https://codeload.github.com/PlayForm/Convert/tar.gz/refs/heads/Current","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PlayForm%2FConvert/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272934716,"owners_count":25017929,"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","status":"online","status_checked_at":"2025-08-31T02:00:09.071Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["astro","astro-component","astro-convert","astro-integration","convert","playform","withastro"],"created_at":"2024-10-08T01:02:01.471Z","updated_at":"2026-01-28T16:14:28.929Z","avatar_url":"https://github.com/PlayForm.png","language":"TypeScript","readme":"# 🫶 [@playform/convert]\n\nThis **[`Astro integration`][astro-integration]** converts all your files into\ndifferent formats.\n\n## Installation 🚀\n\nThere are two ways to add integrations to your project. Let's try the most\nconvenient option first!\n\n### `astro add` command\n\nAstro includes a CLI tool for adding first party integrations: `astro add`. This\ncommand will:\n\n1. (Optionally) Install all necessary dependencies and peer dependencies\n2. (Also optionally) Update your `astro.config.*` file to apply this integration\n\nTo install `@playform/convert`, run the following from your project directory\nand follow the prompts:\n\nUsing NPM:\n\n```sh\nnpx astro add @playform/convert\n```\n\nUsing Yarn:\n\n```sh\nyarn astro add @playform/convert\n```\n\nUsing PNPM:\n\n```sh\npnpx astro add @playform/convert\n```\n\n### Install dependencies manually\n\nFirst, install the `@playform/convert` integration like so:\n\n```sh\nnpm install -D -E @playform/convert\n```\n\nThen, apply this integration to your `astro.config.*` file using the\n`integrations` property:\n\n**`astro.config.ts`**\n\n```ts\nimport Convert from \"@playform/convert\";\n\nexport default {\n\tintegrations: [Convert()],\n};\n```\n\n## Getting started\n\nYou can override any of the default options from the configurations of:\n\n- [`sharp`](src/Option/Image.ts)\n\nor disable them entirely:\n\n```ts\nimport Convert from \"@playform/convert\";\n\nexport default {\n\tintegrations: [\n\t\tConvert({\n\t\t\tConvert: false,\n\t\t}),\n\t],\n};\n```\n\nSet `Logger` to `0` if you do not want to see debug messages. Default is `2`.\n\n```ts\nimport Convert from \"@playform/convert\";\n\nexport default {\n\tintegrations: [\n\t\tConvert({\n\t\t\tLogger: 0,\n\t\t}),\n\t],\n};\n```\n\n[@playform/convert]: https://NPMJS.Org/@playform/convert\n[astro-integration]: https://docs.astro.build/en/guides/integrations-guide/\n\n## Changelog\n\nSee [`CHANGELOG.md`](CHANGELOG.md) for a history of changes to this integration.\n","funding_links":["https://buy.stripe.com/3csdQZfzn2LDaBOcMN","https://opencollective.com/playform-cloud-collective"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplayform%2Fconvert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplayform%2Fconvert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplayform%2Fconvert/lists"}