├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── ci.yml │ ├── release-please.yml │ └── stale.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npmrc ├── .prettierignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.js ├── jsconfig.json ├── package.json ├── playwright.config.js ├── src ├── app.d.ts ├── app.html ├── lib │ ├── index.js │ ├── index.svelte │ ├── open-graph.svelte │ └── types.d.ts ├── routes │ ├── +page.svelte │ └── index.js └── tests │ ├── open-graph.test.js │ ├── seo.test.js │ └── twitter.test.js ├── svelte.config.js └── vite.config.js /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-please.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/.github/workflows/release-please.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn run lint-staged 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/eslint.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/playwright.config.js -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/app.d.ts -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/app.html -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/lib/index.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/lib/index.svelte -------------------------------------------------------------------------------- /src/lib/open-graph.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/lib/open-graph.svelte -------------------------------------------------------------------------------- /src/lib/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/lib/types.d.ts -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/routes/index.js -------------------------------------------------------------------------------- /src/tests/open-graph.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/tests/open-graph.test.js -------------------------------------------------------------------------------- /src/tests/seo.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/tests/seo.test.js -------------------------------------------------------------------------------- /src/tests/twitter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/src/tests/twitter.test.js -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/svelte.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artiebits/svelte-seo/HEAD/vite.config.js --------------------------------------------------------------------------------