{"id":15936103,"url":"https://github.com/swissgrc/postcss-remove-font-face-format","last_synced_at":"2026-04-01T19:52:04.141Z","repository":{"id":36981946,"uuid":"463434001","full_name":"swissgrc/postcss-remove-font-face-format","owner":"swissgrc","description":"📦 PostCSS plugin to remove font faces formats","archived":false,"fork":false,"pushed_at":"2025-09-30T12:13:13.000Z","size":443,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-09-30T14:26:07.635Z","etag":null,"topics":["font-face","hacktoberfest","plugin","postcss"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/postcss-remove-font-face-format","language":"JavaScript","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/swissgrc.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"2022-02-25T07:11:06.000Z","updated_at":"2025-09-30T12:13:16.000Z","dependencies_parsed_at":"2023-10-23T17:33:35.030Z","dependency_job_id":"3a587a85-ed2e-440e-8cbe-6dcba0ac6891","html_url":"https://github.com/swissgrc/postcss-remove-font-face-format","commit_stats":{"total_commits":87,"total_committers":5,"mean_commits":17.4,"dds":"0.49425287356321834","last_synced_commit":"2f645c26407531cdd12c8af3bc5da204d0b51724"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/swissgrc/postcss-remove-font-face-format","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swissgrc%2Fpostcss-remove-font-face-format","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swissgrc%2Fpostcss-remove-font-face-format/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swissgrc%2Fpostcss-remove-font-face-format/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swissgrc%2Fpostcss-remove-font-face-format/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/swissgrc","download_url":"https://codeload.github.com/swissgrc/postcss-remove-font-face-format/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/swissgrc%2Fpostcss-remove-font-face-format/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30204154,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T19:07:06.838Z","status":"ssl_error","status_checked_at":"2026-03-06T18:57:34.882Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["font-face","hacktoberfest","plugin","postcss"],"created_at":"2024-10-07T04:04:01.231Z","updated_at":"2026-03-07T00:30:48.036Z","avatar_url":"https://github.com/swissgrc.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# postcss-remove-font-face-format\n\n[PostCSS] plugin to remove font faces by format.\n\n[PostCSS]: https://github.com/postcss/postcss\n\n```css\n.foo {\n  /* Input example */\n  @font-face {\n    font-family: \"Open Sans\";\n    src: url(\"/fonts/OpenSans-Regular-webfont.woff2\") format(\"woff2\"),\n         url(\"/fonts/OpenSans-Regular-webfont.woff\") format(\"woff\");\n  }\n}\n```\n\n```css\n.foo {\n  /* Output example */\n  @font-face {\n    font-family: \"Open Sans\";\n    src: url(\"/fonts/OpenSans-Regular-webfont.woff\") format(\"woff\");\n  }\n}\n```\n\n## Usage\n\n**Step 1:** Install plugin:\n\n```sh\nnpm install --save-dev postcss postcss-remove-font-face-format\n```\n\n**Step 2:** Check your project for existing PostCSS config: `postcss.config.js`\nin the project root, `\"postcss\"` section in `package.json`\nor `postcss` in bundle config.\n\nIf you do not use PostCSS, add it according to [official docs]\nand set this plugin in settings.\n\n**Step 3:** Add the plugin to plugins list:\n\n```diff\nmodule.exports = {\n  plugins: [\n+   require('postcss-remove-font-face-format'),\n    require('autoprefixer')\n  ]\n}\n```\n\n[official docs]: https://github.com/postcss/postcss#usage\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswissgrc%2Fpostcss-remove-font-face-format","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fswissgrc%2Fpostcss-remove-font-face-format","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fswissgrc%2Fpostcss-remove-font-face-format/lists"}