{"id":15497506,"url":"https://github.com/bcomnes/gravatar-favicons","last_synced_at":"2025-04-22T22:20:37.012Z","repository":{"id":34302823,"uuid":"176415708","full_name":"bcomnes/gravatar-favicons","owner":"bcomnes","description":"Transform an email to every favicon","archived":false,"fork":false,"pushed_at":"2024-11-28T22:01:18.000Z","size":141,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T06:03:50.500Z","etag":null,"topics":["favicons","gravatar-favicons","nodejs","npm"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/gravatar-favicons","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/bcomnes.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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":["bcomnes"],"custom":["https://bret.io"]}},"created_at":"2019-03-19T03:26:55.000Z","updated_at":"2024-11-28T22:01:22.000Z","dependencies_parsed_at":"2024-01-03T22:26:56.521Z","dependency_job_id":"c717f763-fd72-4016-9a1c-55af939b81a4","html_url":"https://github.com/bcomnes/gravatar-favicons","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcomnes%2Fgravatar-favicons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcomnes%2Fgravatar-favicons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcomnes%2Fgravatar-favicons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bcomnes%2Fgravatar-favicons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bcomnes","download_url":"https://codeload.github.com/bcomnes/gravatar-favicons/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250332105,"owners_count":21413153,"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":["favicons","gravatar-favicons","nodejs","npm"],"created_at":"2024-10-02T08:39:00.218Z","updated_at":"2025-04-22T22:20:36.962Z","avatar_url":"https://github.com/bcomnes.png","language":"JavaScript","funding_links":["https://github.com/sponsors/bcomnes","https://bret.io"],"categories":[],"sub_categories":[],"readme":"# gravatar-favicons\n\nGenerate favicons from a gravatar email.\n\n## Usage\n\n```console\ngenerate-favicon --email person@example.com --dest ./some/folder\ngenerate-favicon --config ./example-config.js\ngenerate-favicon --config ./example-config.json\n```\n\n### Example config\n\n```js\nmodule.exports = {\n  email: 'bcomnes@gmail.com',\n  dest: './out',\n  faviconConfig: {\n    path: '/', // Path for overriding default icons path. `string`\n    appName: 'bret.io', // Your application's name. `string`\n    appDescription: 'Bret Comnes\\'s website', // Your application's description. `string`\n    developerName: 'Bret Comnes', // Your (or your developer's) name. `string`\n    developerURL: 'https://bret.io', // Your (or your developer's) URL. `string`\n    dir: 'auto', // Primary text direction for name, short_name, and description\n    lang: 'en-US', // Primary language for name and short_name\n    background: '#232830', // Background colour for flattened icons. `string`\n    theme_color: '#232830', // Theme color user for example in Android's task switcher. `string`\n    display: 'standalone', // Preferred display mode: \"fullscreen\", \"standalone\", \"minimal-ui\" or \"browser\". `string`\n    orientation: 'any', // Default orientation: \"any\", \"natural\", \"portrait\" or \"landscape\". `string`\n    start_url: '/?homescreen=1', // Start URL when launching the application from a device. `string`\n    version: '1.0', // Your application's version string. `string`\n    logging: true, // Print logs to console? `boolean`\n    icons: {\n      // Platform Options:\n      // - offset - offset in percentage\n      // - background:\n      //   * false - use default\n      //   * true - force use default, e.g. set background for Android icons\n      //   * color - set background for the specified icons\n      //\n      android: false, // Create Android homescreen icon. `boolean` or `{ offset, background }`\n      appleIcon: true, // Create Apple touch icons. `boolean` or `{ offset, background }`\n      appleStartup: false, // Create Apple startup images. `boolean` or `{ offset, background }`\n      coast: false, // Create Opera Coast icon. `boolean` or `{ offset, background }`\n      favicons: true, // Create regular favicons. `boolean`\n      firefox: false, // Create Firefox OS icons. `boolean` or `{ offset, background }`\n      windows: true, // Create Windows 8 tile icons. `boolean` or `{ background }`\n      yandex: false // Create Yandex browser icon. `boolean` or `{ background }`\n    }\n  }\n}\n```\n\nThe `faviconConfig` field is the same options that can be passed to [favicons](https://github.com/itgalaxy/favicons).\n\n\nCreates the following assets:\n\n```console\n├── apple-touch-icon-1024x1024.png\n├── apple-touch-icon-114x114.png\n├── apple-touch-icon-120x120.png\n├── apple-touch-icon-144x144.png\n├── apple-touch-icon-152x152.png\n├── apple-touch-icon-167x167.png\n├── apple-touch-icon-180x180.png\n├── apple-touch-icon-57x57.png\n├── apple-touch-icon-60x60.png\n├── apple-touch-icon-72x72.png\n├── apple-touch-icon-76x76.png\n├── apple-touch-icon-precomposed.png\n├── apple-touch-icon.png\n├── browserconfig.xml\n├── favicon-16x16.png\n├── favicon-32x32.png\n├── favicon.ico\n├── mstile-144x144.png\n├── mstile-150x150.png\n├── mstile-310x150.png\n├── mstile-310x310.png\n├── mstile-70x70.png\n└── snippets.html\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcomnes%2Fgravatar-favicons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbcomnes%2Fgravatar-favicons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbcomnes%2Fgravatar-favicons/lists"}