├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── SEO.svelte ├── package.json └── types ├── SEO.svelte.d.ts └── SEO.ts /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDahoom/Sveltekit-seo/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github 2 | .gitignore 3 | test -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDahoom/Sveltekit-seo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDahoom/Sveltekit-seo/HEAD/README.md -------------------------------------------------------------------------------- /SEO.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDahoom/Sveltekit-seo/HEAD/SEO.svelte -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDahoom/Sveltekit-seo/HEAD/package.json -------------------------------------------------------------------------------- /types/SEO.svelte.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDahoom/Sveltekit-seo/HEAD/types/SEO.svelte.d.ts -------------------------------------------------------------------------------- /types/SEO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDahoom/Sveltekit-seo/HEAD/types/SEO.ts --------------------------------------------------------------------------------