├── .github ├── FUNDING.yml └── workflows │ └── publish.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE-0BSD ├── LICENSE-MIT ├── README.md ├── malta.config.json ├── package.json └── pages ├── examples ├── email-password-2fa-webauthn.md ├── email-password-2fa.md ├── github-oauth.md └── google-oauth.md ├── index.md ├── lucia-v3 └── migrate.md ├── rate-limit └── token-bucket.md ├── sessions ├── basic.md ├── frameworks │ ├── index.md │ ├── nextjs.md │ └── sveltekit.md ├── inactivity-timeout.md ├── overview.md └── stateless-tokens.md └── tutorials ├── github-oauth ├── astro.md ├── index.md ├── nextjs.md └── sveltekit.md └── google-oauth ├── astro.md ├── index.md ├── nextjs.md └── sveltekit.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: pilcrowOnPaper 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/.github/workflows/publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE-0BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/LICENSE-0BSD -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/README.md -------------------------------------------------------------------------------- /malta.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/malta.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/package.json -------------------------------------------------------------------------------- /pages/examples/email-password-2fa-webauthn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/examples/email-password-2fa-webauthn.md -------------------------------------------------------------------------------- /pages/examples/email-password-2fa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/examples/email-password-2fa.md -------------------------------------------------------------------------------- /pages/examples/github-oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/examples/github-oauth.md -------------------------------------------------------------------------------- /pages/examples/google-oauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/examples/google-oauth.md -------------------------------------------------------------------------------- /pages/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/index.md -------------------------------------------------------------------------------- /pages/lucia-v3/migrate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/lucia-v3/migrate.md -------------------------------------------------------------------------------- /pages/rate-limit/token-bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/rate-limit/token-bucket.md -------------------------------------------------------------------------------- /pages/sessions/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/sessions/basic.md -------------------------------------------------------------------------------- /pages/sessions/frameworks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/sessions/frameworks/index.md -------------------------------------------------------------------------------- /pages/sessions/frameworks/nextjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/sessions/frameworks/nextjs.md -------------------------------------------------------------------------------- /pages/sessions/frameworks/sveltekit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/sessions/frameworks/sveltekit.md -------------------------------------------------------------------------------- /pages/sessions/inactivity-timeout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/sessions/inactivity-timeout.md -------------------------------------------------------------------------------- /pages/sessions/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/sessions/overview.md -------------------------------------------------------------------------------- /pages/sessions/stateless-tokens.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/sessions/stateless-tokens.md -------------------------------------------------------------------------------- /pages/tutorials/github-oauth/astro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/tutorials/github-oauth/astro.md -------------------------------------------------------------------------------- /pages/tutorials/github-oauth/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/tutorials/github-oauth/index.md -------------------------------------------------------------------------------- /pages/tutorials/github-oauth/nextjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/tutorials/github-oauth/nextjs.md -------------------------------------------------------------------------------- /pages/tutorials/github-oauth/sveltekit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/tutorials/github-oauth/sveltekit.md -------------------------------------------------------------------------------- /pages/tutorials/google-oauth/astro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/tutorials/google-oauth/astro.md -------------------------------------------------------------------------------- /pages/tutorials/google-oauth/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/tutorials/google-oauth/index.md -------------------------------------------------------------------------------- /pages/tutorials/google-oauth/nextjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/tutorials/google-oauth/nextjs.md -------------------------------------------------------------------------------- /pages/tutorials/google-oauth/sveltekit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucia-auth/lucia/HEAD/pages/tutorials/google-oauth/sveltekit.md --------------------------------------------------------------------------------