├── .gitignore ├── README.md ├── api └── avatar.js ├── avatar-html.js ├── package.json ├── test ├── fallback.svg └── test.js └── vercel.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | .vercel 4 | .cache 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/api-indieweb-avatar/HEAD/README.md -------------------------------------------------------------------------------- /api/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/api-indieweb-avatar/HEAD/api/avatar.js -------------------------------------------------------------------------------- /avatar-html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/api-indieweb-avatar/HEAD/avatar-html.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/api-indieweb-avatar/HEAD/package.json -------------------------------------------------------------------------------- /test/fallback.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/api-indieweb-avatar/HEAD/test/fallback.svg -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/api-indieweb-avatar/HEAD/test/test.js -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11ty/api-indieweb-avatar/HEAD/vercel.json --------------------------------------------------------------------------------