├── .tool-versions ├── backend ├── .gitignore ├── authentication │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── tests.py │ ├── urls.py │ └── views.py ├── backend │ ├── __init__.py │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ ├── views.py │ └── wsgi.py ├── manage.py └── templates │ └── home.html ├── frontend ├── .env.local.example ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .tool-versions ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src │ ├── app.d.ts │ ├── app.html │ ├── auth.ts │ ├── hooks.server.ts │ ├── lib │ │ └── index.ts │ └── routes │ │ ├── +layout.server.ts │ │ ├── +layout.svelte │ │ ├── +page.svelte │ │ ├── _nav.svelte │ │ ├── link │ │ └── +page.svelte │ │ ├── login │ │ ├── +page.svelte │ │ └── +page.ts │ │ ├── profile │ │ └── +page.svelte │ │ ├── protected │ │ ├── +page.server.ts │ │ └── +page.svelte │ │ └── session │ │ └── +page.svelte ├── static │ ├── favicon.ico │ └── favicon.png ├── svelte.config.js ├── tsconfig.json └── vite.config.ts ├── poetry.lock ├── pyproject.toml └── readme.rst /.tool-versions: -------------------------------------------------------------------------------- 1 | python 3.12.1 2 | nodejs 18.14.0 3 | -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | # Django # 2 | db.sqlite3 3 | 4 | # Python # 5 | *.py[cod] 6 | __pycache__/ 7 | *$py.class 8 | -------------------------------------------------------------------------------- /backend/authentication/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-schwendenman/django-svelte-authjs/cf2e1c1cef682530f4962963f5e1149ad6a959f8/backend/authentication/__init__.py -------------------------------------------------------------------------------- /backend/authentication/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | -------------------------------------------------------------------------------- /backend/authentication/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class AuthenticationConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'authentication' 7 | -------------------------------------------------------------------------------- /backend/authentication/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-schwendenman/django-svelte-authjs/cf2e1c1cef682530f4962963f5e1149ad6a959f8/backend/authentication/migrations/__init__.py -------------------------------------------------------------------------------- /backend/authentication/models.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | 3 | # Create your models here. 4 | -------------------------------------------------------------------------------- /backend/authentication/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /backend/authentication/urls.py: -------------------------------------------------------------------------------- 1 | 2 | from django.urls import path, include 3 | from rest_framework_simplejwt.views import TokenBlacklistView 4 | from authentication.views import GithubLogin, GoogleLogin 5 | 6 | urlpatterns = [ 7 | path('', include('dj_rest_auth.urls')), 8 | path('registration/', include('dj_rest_auth.registration.urls')), 9 | path('token/blacklist/', TokenBlacklistView.as_view(), name='token_blacklist'), 10 | path("github/", GithubLogin.as_view(), name="github_login"), 11 | path("google/", GoogleLogin.as_view(), name="google_login"), 12 | ] 13 | -------------------------------------------------------------------------------- /backend/authentication/views.py: -------------------------------------------------------------------------------- 1 | from dj_rest_auth.registration.views import SocialLoginView 2 | from allauth.socialaccount.providers.google.views import GoogleOAuth2Adapter 3 | from allauth.socialaccount.providers.github.views import GitHubOAuth2Adapter 4 | from allauth.socialaccount.providers.oauth2.client import OAuth2Client 5 | 6 | 7 | class GoogleLogin(SocialLoginView): 8 | adapter_class = GoogleOAuth2Adapter 9 | callback_url = "http://127.0.0.1:5173/" 10 | client_class = OAuth2Client 11 | 12 | 13 | class GithubLogin(SocialLoginView): 14 | adapter_class = GitHubOAuth2Adapter 15 | callback_url = "http://127.0.0.1:5173/" 16 | client_class = OAuth2Client 17 | 18 | -------------------------------------------------------------------------------- /backend/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paul-schwendenman/django-svelte-authjs/cf2e1c1cef682530f4962963f5e1149ad6a959f8/backend/backend/__init__.py -------------------------------------------------------------------------------- /backend/backend/asgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | ASGI config for backend project. 3 | 4 | It exposes the ASGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/5.0/howto/deployment/asgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.asgi import get_asgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') 15 | 16 | application = get_asgi_application() 17 | -------------------------------------------------------------------------------- /backend/backend/settings.py: -------------------------------------------------------------------------------- 1 | """ 2 | Django settings for backend project. 3 | 4 | Generated by 'django-admin startproject' using Django 5.0.1. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/5.0/topics/settings/ 8 | 9 | For the full list of settings and their values, see 10 | https://docs.djangoproject.com/en/5.0/ref/settings/ 11 | """ 12 | 13 | from pathlib import Path 14 | from datetime import timedelta 15 | import os.path 16 | 17 | # Build paths inside the project like this: BASE_DIR / 'subdir'. 18 | BASE_DIR = Path(__file__).resolve().parent.parent 19 | 20 | SITE_ID = 1 21 | 22 | # Quick-start development settings - unsuitable for production 23 | # See https://docs.djangoproject.com/en/5.0/howto/deployment/checklist/ 24 | 25 | # SECURITY WARNING: keep the secret key used in production secret! 26 | SECRET_KEY = 'django-insecure-o2dylioz@f3q+ek#3w%0(a3=rq3@pn3co)a@p))=5t%(d6s3f)' 27 | 28 | # SECURITY WARNING: don't run with debug turned on in production! 29 | DEBUG = True 30 | 31 | ALLOWED_HOSTS = [] 32 | 33 | CORS_ALLOW_ALL_ORIGINS = True 34 | 35 | 36 | # Application definition 37 | 38 | INSTALLED_APPS = [ 39 | 'django.contrib.sites', 40 | 'django.contrib.admin', 41 | 'django.contrib.auth', 42 | 'django.contrib.contenttypes', 43 | 'django.contrib.sessions', 44 | 'django.contrib.messages', 45 | 'django.contrib.staticfiles', 46 | 'authentication.apps.AuthenticationConfig', 47 | 'rest_framework', 48 | 'rest_framework.authtoken', 49 | 'rest_framework_simplejwt', 50 | 'rest_framework_simplejwt.token_blacklist', 51 | 'allauth', 52 | 'allauth.account', 53 | 'allauth.socialaccount', 54 | 'allauth.socialaccount.providers.github', 55 | 'allauth.socialaccount.providers.google', 56 | 'dj_rest_auth', 57 | 'dj_rest_auth.registration', 58 | 'corsheaders', 59 | ] 60 | 61 | MIDDLEWARE = [ 62 | 'django.middleware.security.SecurityMiddleware', 63 | 'django.contrib.sessions.middleware.SessionMiddleware', 64 | 'corsheaders.middleware.CorsMiddleware', 65 | 'django.middleware.common.CommonMiddleware', 66 | 'django.middleware.csrf.CsrfViewMiddleware', 67 | 'django.contrib.auth.middleware.AuthenticationMiddleware', 68 | 'django.contrib.messages.middleware.MessageMiddleware', 69 | 'django.middleware.clickjacking.XFrameOptionsMiddleware', 70 | 'allauth.account.middleware.AccountMiddleware', 71 | ] 72 | 73 | ROOT_URLCONF = 'backend.urls' 74 | 75 | TEMPLATES = [ 76 | { 77 | 'BACKEND': 'django.template.backends.django.DjangoTemplates', 78 | 'DIRS': [os.path.join(BASE_DIR, 'templates')], 79 | 'APP_DIRS': True, 80 | 'OPTIONS': { 81 | 'context_processors': [ 82 | 'django.template.context_processors.debug', 83 | 'django.template.context_processors.request', 84 | 'django.contrib.auth.context_processors.auth', 85 | 'django.contrib.messages.context_processors.messages', 86 | ], 87 | }, 88 | }, 89 | ] 90 | 91 | WSGI_APPLICATION = 'backend.wsgi.application' 92 | 93 | 94 | # Database 95 | # https://docs.djangoproject.com/en/5.0/ref/settings/#databases 96 | 97 | DATABASES = { 98 | 'default': { 99 | 'ENGINE': 'django.db.backends.sqlite3', 100 | 'NAME': BASE_DIR / 'db.sqlite3', 101 | } 102 | } 103 | 104 | 105 | # Password validation 106 | # https://docs.djangoproject.com/en/5.0/ref/settings/#auth-password-validators 107 | 108 | AUTH_PASSWORD_VALIDATORS = [ 109 | { 110 | 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 111 | }, 112 | { 113 | 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 114 | }, 115 | { 116 | 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 117 | }, 118 | { 119 | 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 120 | }, 121 | ] 122 | 123 | 124 | AUTHENTICATION_BACKENDS = ( 125 | "django.contrib.auth.backends.ModelBackend", 126 | "allauth.account.auth_backends.AuthenticationBackend", 127 | ) 128 | 129 | # Internationalization 130 | # https://docs.djangoproject.com/en/5.0/topics/i18n/ 131 | 132 | LANGUAGE_CODE = 'en-us' 133 | 134 | TIME_ZONE = 'UTC' 135 | 136 | USE_I18N = True 137 | 138 | USE_TZ = True 139 | 140 | 141 | # Static files (CSS, JavaScript, Images) 142 | # https://docs.djangoproject.com/en/5.0/howto/static-files/ 143 | 144 | STATIC_URL = 'static/' 145 | 146 | # Default primary key field type 147 | # https://docs.djangoproject.com/en/5.0/ref/settings/#default-auto-field 148 | 149 | DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' 150 | 151 | REST_FRAMEWORK = { 152 | "DEFAULT_AUTHENTICATION_CLASSES": [ 153 | "rest_framework_simplejwt.authentication.JWTAuthentication", 154 | ] 155 | } 156 | 157 | SIMPLE_JWT = { 158 | 'ACCESS_TOKEN_LIFETIME': timedelta(minutes=60), 159 | 'REFRESH_TOKEN_LIFETIME': timedelta(days=7), 160 | 'ROTATE_REFRESH_TOKENS': True, 161 | 'BLACKLIST_AFTER_ROTATION': True, 162 | 'UPDATE_LAST_LOGIN': True, 163 | 'SIGNING_KEY': 'complexsigningkey', # generate a key and replace me 164 | 'ALGORITHM': 'HS512', 165 | } 166 | 167 | 168 | REST_AUTH = { 169 | "USE_JWT": True, 170 | "JWT_AUTH_HTTPONLY": False, 171 | } 172 | 173 | ACCOUNT_EMAIL_REQUIRED = False 174 | ACCOUNT_EMAIL_VERIFICATION = 'none' 175 | LOGIN_REDIRECT_URL = 'home' 176 | 177 | 178 | SOCIALACCOUNT_PROVIDERS = { 179 | "github": { 180 | # For each provider, you can choose whether or not the 181 | # email address(es) retrieved from the provider are to be 182 | # interpreted as verified. 183 | "VERIFIED_EMAIL": True 184 | }, 185 | "google": { 186 | # For each provider, you can choose whether or not the 187 | # email address(es) retrieved from the provider are to be 188 | # interpreted as verified. 189 | "VERIFIED_EMAIL": True 190 | }, 191 | } 192 | 193 | -------------------------------------------------------------------------------- /backend/backend/urls.py: -------------------------------------------------------------------------------- 1 | """ 2 | URL configuration for backend project. 3 | 4 | The `urlpatterns` list routes URLs to views. For more information please see: 5 | https://docs.djangoproject.com/en/5.0/topics/http/urls/ 6 | Examples: 7 | Function views 8 | 1. Add an import: from my_app import views 9 | 2. Add a URL to urlpatterns: path('', views.home, name='home') 10 | Class-based views 11 | 1. Add an import: from other_app.views import Home 12 | 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') 13 | Including another URLconf 14 | 1. Import the include() function: from django.urls import include, path 15 | 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 16 | """ 17 | from django.contrib import admin 18 | from django.urls import path, include 19 | 20 | from .views import Home 21 | 22 | 23 | urlpatterns = [ 24 | path('api/auth/', include('authentication.urls')), 25 | path('accounts/', include('allauth.urls')), 26 | path('admin/', admin.site.urls), 27 | path('', Home.as_view(), name='home'), 28 | ] 29 | -------------------------------------------------------------------------------- /backend/backend/views.py: -------------------------------------------------------------------------------- 1 | from django.views.generic import TemplateView 2 | 3 | 4 | class Home(TemplateView): 5 | template_name = 'home.html' 6 | -------------------------------------------------------------------------------- /backend/backend/wsgi.py: -------------------------------------------------------------------------------- 1 | """ 2 | WSGI config for backend project. 3 | 4 | It exposes the WSGI callable as a module-level variable named ``application``. 5 | 6 | For more information on this file, see 7 | https://docs.djangoproject.com/en/5.0/howto/deployment/wsgi/ 8 | """ 9 | 10 | import os 11 | 12 | from django.core.wsgi import get_wsgi_application 13 | 14 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') 15 | 16 | application = get_wsgi_application() 17 | -------------------------------------------------------------------------------- /backend/manage.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """Django's command-line utility for administrative tasks.""" 3 | import os 4 | import sys 5 | 6 | 7 | def main(): 8 | """Run administrative tasks.""" 9 | os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'backend.settings') 10 | try: 11 | from django.core.management import execute_from_command_line 12 | except ImportError as exc: 13 | raise ImportError( 14 | "Couldn't import Django. Are you sure it's installed and " 15 | "available on your PYTHONPATH environment variable? Did you " 16 | "forget to activate a virtual environment?" 17 | ) from exc 18 | execute_from_command_line(sys.argv) 19 | 20 | 21 | if __name__ == '__main__': 22 | main() 23 | -------------------------------------------------------------------------------- /backend/templates/home.html: -------------------------------------------------------------------------------- 1 | {% load socialaccount %} 2 | 3 |
Welcome {{ user.username }} !!!
6 | Sign Out 7 | {% else %} 8 | Google Sign Up 9 | Github Sign Up 10 | Sign In 11 | {% endif %} 12 | -------------------------------------------------------------------------------- /frontend/.env.local.example: -------------------------------------------------------------------------------- 1 | AUTH_SECRET= # Linux: `openssl rand -hex 32` 2 | 3 | AUTH_BACKEND_URL= 4 | 5 | AUTH_GITHUB_ID= 6 | AUTH_GITHUB_SECRET= 7 | 8 | AUTH_GOOGLE_ID= 9 | AUTH_GOOGLE_SECRET= 10 | -------------------------------------------------------------------------------- /frontend/.eslintignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /frontend/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | /** @type { import("eslint").Linter.Config } */ 2 | module.exports = { 3 | root: true, 4 | extends: [ 5 | 'eslint:recommended', 6 | 'plugin:@typescript-eslint/recommended', 7 | 'plugin:svelte/recommended', 8 | 'prettier' 9 | ], 10 | parser: '@typescript-eslint/parser', 11 | plugins: ['@typescript-eslint'], 12 | parserOptions: { 13 | sourceType: 'module', 14 | ecmaVersion: 2020, 15 | extraFileExtensions: ['.svelte'] 16 | }, 17 | env: { 18 | browser: true, 19 | es2017: true, 20 | node: true 21 | }, 22 | overrides: [ 23 | { 24 | files: ['*.svelte'], 25 | parser: 'svelte-eslint-parser', 26 | parserOptions: { 27 | parser: '@typescript-eslint/parser' 28 | } 29 | } 30 | ] 31 | }; 32 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | !.env.*.example 10 | vite.config.js.timestamp-* 11 | vite.config.ts.timestamp-* 12 | -------------------------------------------------------------------------------- /frontend/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /frontend/.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore files for PNPM, NPM and YARN 2 | pnpm-lock.yaml 3 | package-lock.json 4 | yarn.lock 5 | -------------------------------------------------------------------------------- /frontend/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100, 6 | "plugins": ["prettier-plugin-svelte"], 7 | "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] 8 | } 9 | -------------------------------------------------------------------------------- /frontend/.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 18.18.2 2 | -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- 1 | # create-svelte 2 | 3 | Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte). 4 | 5 | ## Creating a project 6 | 7 | If you're seeing this, you've probably already done this step. Congrats! 8 | 9 | ```bash 10 | # create a new project in the current directory 11 | npm create svelte@latest 12 | 13 | # create a new project in my-app 14 | npm create svelte@latest my-app 15 | ``` 16 | 17 | ## Developing 18 | 19 | Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: 20 | 21 | ```bash 22 | npm run dev 23 | 24 | # or start the server and open the app in a new browser tab 25 | npm run dev -- --open 26 | ``` 27 | 28 | ## Building 29 | 30 | To create a production version of your app: 31 | 32 | ```bash 33 | npm run build 34 | ``` 35 | 36 | You can preview the production build with `npm run preview`. 37 | 38 | > To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. 39 | 40 | ## Sources 41 | 42 | I followed a couple pages and guides to get this project up and running 43 | 44 | - https://testdriven.io/blog/django-rest-authjs/ 45 | - https://docs.allauth.org/en/latest/installation/quickstart.html 46 | - https://www.freecodecamp.org/news/set-up-github-oauth-on-django-for-user-authentication/ 47 | - https://authjs.dev/reference/sveltekit 48 | - https://kit.svelte.dev/docs/modules#$env-static-public 49 | - https://authjs.dev/getting-started/typescript#module-augmentation 50 | - https://itecnote.com/tecnote/django-allauth-linking-multiple-social-accounts-to-a-single-user/ 51 | - https://next-auth.js.org/configuration/pages 52 | - https://next-auth.js.org/configuration/options#theme 53 | - https://authjs.dev/getting-started/providers/credentials-tutorial 54 | - https://medium.com/@uriser/authentication-in-sveltekit-with-auth-js-7ff505d584c4 55 | - https://dev.to/mabaranowski/nextjs-authentication-jwt-refresh-token-rotation-with-nextauthjs-5696 56 | - https://authjs.dev/guides/basics/refresh-token-rotation?frameworks=core 57 | - https://asvrada.github.io/blog/django-graphql-jwt/ 58 | - https://next-auth.js.org/configuration/options#callbacks 59 | - https://learndjango.com/tutorials/django-allauth-tutorial 60 | - https://github.com/nextauthjs/next-auth/blob/main/packages/core/src/lib/pages/signin.tsx 61 | 62 | 63 | ## Notes 64 | 65 | AUTH_SECRET is a random string used by the library to encrypt tokens and email verification hashes: 66 | 67 | ``` 68 | openssl rand -base64 32 69 | ``` 70 | -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frontend", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "dev": "vite dev", 7 | "build": "vite build", 8 | "preview": "vite preview", 9 | "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", 10 | "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch", 11 | "lint": "prettier --check . && eslint .", 12 | "format": "prettier --write ." 13 | }, 14 | "devDependencies": { 15 | "@auth/core": "^0.37.4", 16 | "@auth/sveltekit": "^1.7.4", 17 | "@sveltejs/adapter-auto": "^3.3.1", 18 | "@sveltejs/kit": "^2.8.1", 19 | "@sveltejs/vite-plugin-svelte": "^3.1.2", 20 | "@types/eslint": "8.56.0", 21 | "@typescript-eslint/eslint-plugin": "^6.21.0", 22 | "@typescript-eslint/parser": "^6.21.0", 23 | "eslint": "^8.57.1", 24 | "eslint-config-prettier": "^9.1.0", 25 | "eslint-plugin-svelte": "^2.46.0", 26 | "prettier": "^3.3.3", 27 | "prettier-plugin-svelte": "^3.2.8", 28 | "svelte": "^4.2.19", 29 | "svelte-check": "^3.8.6", 30 | "tslib": "^2.8.1", 31 | "typescript": "^5.6.3", 32 | "vite": "^5.4.11" 33 | }, 34 | "type": "module", 35 | "pnpm": { 36 | "patchedDependencies": {} 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /frontend/pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | devDependencies: 11 | '@auth/core': 12 | specifier: ^0.37.4 13 | version: 0.37.4 14 | '@auth/sveltekit': 15 | specifier: ^1.7.4 16 | version: 1.7.4(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19) 17 | '@sveltejs/adapter-auto': 18 | specifier: ^3.3.1 19 | version: 3.3.1(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11)) 20 | '@sveltejs/kit': 21 | specifier: ^2.8.1 22 | version: 2.8.1(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11) 23 | '@sveltejs/vite-plugin-svelte': 24 | specifier: ^3.1.2 25 | version: 3.1.2(svelte@4.2.19)(vite@5.4.11) 26 | '@types/eslint': 27 | specifier: 8.56.0 28 | version: 8.56.0 29 | '@typescript-eslint/eslint-plugin': 30 | specifier: ^6.21.0 31 | version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3) 32 | '@typescript-eslint/parser': 33 | specifier: ^6.21.0 34 | version: 6.21.0(eslint@8.57.1)(typescript@5.6.3) 35 | eslint: 36 | specifier: ^8.57.1 37 | version: 8.57.1 38 | eslint-config-prettier: 39 | specifier: ^9.1.0 40 | version: 9.1.0(eslint@8.57.1) 41 | eslint-plugin-svelte: 42 | specifier: ^2.46.0 43 | version: 2.46.0(eslint@8.57.1)(svelte@4.2.19) 44 | prettier: 45 | specifier: ^3.3.3 46 | version: 3.3.3 47 | prettier-plugin-svelte: 48 | specifier: ^3.2.8 49 | version: 3.2.8(prettier@3.3.3)(svelte@4.2.19) 50 | svelte: 51 | specifier: ^4.2.19 52 | version: 4.2.19 53 | svelte-check: 54 | specifier: ^3.8.6 55 | version: 3.8.6(postcss-load-config@3.1.4(postcss@8.4.49))(postcss@8.4.49)(svelte@4.2.19) 56 | tslib: 57 | specifier: ^2.8.1 58 | version: 2.8.1 59 | typescript: 60 | specifier: ^5.6.3 61 | version: 5.6.3 62 | vite: 63 | specifier: ^5.4.11 64 | version: 5.4.11 65 | 66 | packages: 67 | 68 | '@ampproject/remapping@2.3.0': 69 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 70 | engines: {node: '>=6.0.0'} 71 | 72 | '@auth/core@0.37.4': 73 | resolution: {integrity: sha512-HOXJwXWXQRhbBDHlMU0K/6FT1v+wjtzdKhsNg0ZN7/gne6XPsIrjZ4daMcFnbq0Z/vsAbYBinQhhua0d77v7qw==} 74 | peerDependencies: 75 | '@simplewebauthn/browser': ^9.0.1 76 | '@simplewebauthn/server': ^9.0.2 77 | nodemailer: ^6.8.0 78 | peerDependenciesMeta: 79 | '@simplewebauthn/browser': 80 | optional: true 81 | '@simplewebauthn/server': 82 | optional: true 83 | nodemailer: 84 | optional: true 85 | 86 | '@auth/sveltekit@1.7.4': 87 | resolution: {integrity: sha512-jerujN2T6txrVGcblhWrB75sBbtub3v2U1DM9+8W3MOOSfhFdlCLEW+Uow8qAGZzsnTE2WmvcMkXeGd7r2jl5A==} 88 | peerDependencies: 89 | '@simplewebauthn/browser': ^9.0.1 90 | '@simplewebauthn/server': ^9.0.3 91 | '@sveltejs/kit': ^1.0.0 || ^2.0.0 92 | nodemailer: ^6.6.5 93 | svelte: ^3.54.0 || ^4.0.0 || ^5.0.0-0 94 | peerDependenciesMeta: 95 | '@simplewebauthn/browser': 96 | optional: true 97 | '@simplewebauthn/server': 98 | optional: true 99 | nodemailer: 100 | optional: true 101 | 102 | '@esbuild/aix-ppc64@0.21.5': 103 | resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 104 | engines: {node: '>=12'} 105 | cpu: [ppc64] 106 | os: [aix] 107 | 108 | '@esbuild/android-arm64@0.21.5': 109 | resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 110 | engines: {node: '>=12'} 111 | cpu: [arm64] 112 | os: [android] 113 | 114 | '@esbuild/android-arm@0.21.5': 115 | resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 116 | engines: {node: '>=12'} 117 | cpu: [arm] 118 | os: [android] 119 | 120 | '@esbuild/android-x64@0.21.5': 121 | resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 122 | engines: {node: '>=12'} 123 | cpu: [x64] 124 | os: [android] 125 | 126 | '@esbuild/darwin-arm64@0.21.5': 127 | resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 128 | engines: {node: '>=12'} 129 | cpu: [arm64] 130 | os: [darwin] 131 | 132 | '@esbuild/darwin-x64@0.21.5': 133 | resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 134 | engines: {node: '>=12'} 135 | cpu: [x64] 136 | os: [darwin] 137 | 138 | '@esbuild/freebsd-arm64@0.21.5': 139 | resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 140 | engines: {node: '>=12'} 141 | cpu: [arm64] 142 | os: [freebsd] 143 | 144 | '@esbuild/freebsd-x64@0.21.5': 145 | resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 146 | engines: {node: '>=12'} 147 | cpu: [x64] 148 | os: [freebsd] 149 | 150 | '@esbuild/linux-arm64@0.21.5': 151 | resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 152 | engines: {node: '>=12'} 153 | cpu: [arm64] 154 | os: [linux] 155 | 156 | '@esbuild/linux-arm@0.21.5': 157 | resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 158 | engines: {node: '>=12'} 159 | cpu: [arm] 160 | os: [linux] 161 | 162 | '@esbuild/linux-ia32@0.21.5': 163 | resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 164 | engines: {node: '>=12'} 165 | cpu: [ia32] 166 | os: [linux] 167 | 168 | '@esbuild/linux-loong64@0.21.5': 169 | resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 170 | engines: {node: '>=12'} 171 | cpu: [loong64] 172 | os: [linux] 173 | 174 | '@esbuild/linux-mips64el@0.21.5': 175 | resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 176 | engines: {node: '>=12'} 177 | cpu: [mips64el] 178 | os: [linux] 179 | 180 | '@esbuild/linux-ppc64@0.21.5': 181 | resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 182 | engines: {node: '>=12'} 183 | cpu: [ppc64] 184 | os: [linux] 185 | 186 | '@esbuild/linux-riscv64@0.21.5': 187 | resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 188 | engines: {node: '>=12'} 189 | cpu: [riscv64] 190 | os: [linux] 191 | 192 | '@esbuild/linux-s390x@0.21.5': 193 | resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 194 | engines: {node: '>=12'} 195 | cpu: [s390x] 196 | os: [linux] 197 | 198 | '@esbuild/linux-x64@0.21.5': 199 | resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 200 | engines: {node: '>=12'} 201 | cpu: [x64] 202 | os: [linux] 203 | 204 | '@esbuild/netbsd-x64@0.21.5': 205 | resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 206 | engines: {node: '>=12'} 207 | cpu: [x64] 208 | os: [netbsd] 209 | 210 | '@esbuild/openbsd-x64@0.21.5': 211 | resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 212 | engines: {node: '>=12'} 213 | cpu: [x64] 214 | os: [openbsd] 215 | 216 | '@esbuild/sunos-x64@0.21.5': 217 | resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 218 | engines: {node: '>=12'} 219 | cpu: [x64] 220 | os: [sunos] 221 | 222 | '@esbuild/win32-arm64@0.21.5': 223 | resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 224 | engines: {node: '>=12'} 225 | cpu: [arm64] 226 | os: [win32] 227 | 228 | '@esbuild/win32-ia32@0.21.5': 229 | resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 230 | engines: {node: '>=12'} 231 | cpu: [ia32] 232 | os: [win32] 233 | 234 | '@esbuild/win32-x64@0.21.5': 235 | resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 236 | engines: {node: '>=12'} 237 | cpu: [x64] 238 | os: [win32] 239 | 240 | '@eslint-community/eslint-utils@4.4.1': 241 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 242 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 243 | peerDependencies: 244 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 245 | 246 | '@eslint-community/regexpp@4.12.1': 247 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 248 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 249 | 250 | '@eslint/eslintrc@2.1.4': 251 | resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} 252 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 253 | 254 | '@eslint/js@8.57.1': 255 | resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} 256 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 257 | 258 | '@humanwhocodes/config-array@0.13.0': 259 | resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} 260 | engines: {node: '>=10.10.0'} 261 | deprecated: Use @eslint/config-array instead 262 | 263 | '@humanwhocodes/module-importer@1.0.1': 264 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 265 | engines: {node: '>=12.22'} 266 | 267 | '@humanwhocodes/object-schema@2.0.3': 268 | resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} 269 | deprecated: Use @eslint/object-schema instead 270 | 271 | '@jridgewell/gen-mapping@0.3.5': 272 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 273 | engines: {node: '>=6.0.0'} 274 | 275 | '@jridgewell/resolve-uri@3.1.2': 276 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 277 | engines: {node: '>=6.0.0'} 278 | 279 | '@jridgewell/set-array@1.2.1': 280 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 281 | engines: {node: '>=6.0.0'} 282 | 283 | '@jridgewell/sourcemap-codec@1.5.0': 284 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 285 | 286 | '@jridgewell/trace-mapping@0.3.25': 287 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 288 | 289 | '@nodelib/fs.scandir@2.1.5': 290 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 291 | engines: {node: '>= 8'} 292 | 293 | '@nodelib/fs.stat@2.0.5': 294 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 295 | engines: {node: '>= 8'} 296 | 297 | '@nodelib/fs.walk@1.2.8': 298 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 299 | engines: {node: '>= 8'} 300 | 301 | '@panva/hkdf@1.2.1': 302 | resolution: {integrity: sha512-6oclG6Y3PiDFcoyk8srjLfVKyMfVCKJ27JwNPViuXziFpmdz+MZnZN/aKY0JGXgYuO/VghU0jcOAZgWXZ1Dmrw==} 303 | 304 | '@polka/url@1.0.0-next.28': 305 | resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} 306 | 307 | '@rollup/rollup-android-arm-eabi@4.27.3': 308 | resolution: {integrity: sha512-EzxVSkIvCFxUd4Mgm4xR9YXrcp976qVaHnqom/Tgm+vU79k4vV4eYTjmRvGfeoW8m9LVcsAy/lGjcgVegKEhLQ==} 309 | cpu: [arm] 310 | os: [android] 311 | 312 | '@rollup/rollup-android-arm64@4.27.3': 313 | resolution: {integrity: sha512-LJc5pDf1wjlt9o/Giaw9Ofl+k/vLUaYsE2zeQGH85giX2F+wn/Cg8b3c5CDP3qmVmeO5NzwVUzQQxwZvC2eQKw==} 314 | cpu: [arm64] 315 | os: [android] 316 | 317 | '@rollup/rollup-darwin-arm64@4.27.3': 318 | resolution: {integrity: sha512-OuRysZ1Mt7wpWJ+aYKblVbJWtVn3Cy52h8nLuNSzTqSesYw1EuN6wKp5NW/4eSre3mp12gqFRXOKTcN3AI3LqA==} 319 | cpu: [arm64] 320 | os: [darwin] 321 | 322 | '@rollup/rollup-darwin-x64@4.27.3': 323 | resolution: {integrity: sha512-xW//zjJMlJs2sOrCmXdB4d0uiilZsOdlGQIC/jjmMWT47lkLLoB1nsNhPUcnoqyi5YR6I4h+FjBpILxbEy8JRg==} 324 | cpu: [x64] 325 | os: [darwin] 326 | 327 | '@rollup/rollup-freebsd-arm64@4.27.3': 328 | resolution: {integrity: sha512-58E0tIcwZ+12nK1WiLzHOD8I0d0kdrY/+o7yFVPRHuVGY3twBwzwDdTIBGRxLmyjciMYl1B/U515GJy+yn46qw==} 329 | cpu: [arm64] 330 | os: [freebsd] 331 | 332 | '@rollup/rollup-freebsd-x64@4.27.3': 333 | resolution: {integrity: sha512-78fohrpcVwTLxg1ZzBMlwEimoAJmY6B+5TsyAZ3Vok7YabRBUvjYTsRXPTjGEvv/mfgVBepbW28OlMEz4w8wGA==} 334 | cpu: [x64] 335 | os: [freebsd] 336 | 337 | '@rollup/rollup-linux-arm-gnueabihf@4.27.3': 338 | resolution: {integrity: sha512-h2Ay79YFXyQi+QZKo3ISZDyKaVD7uUvukEHTOft7kh00WF9mxAaxZsNs3o/eukbeKuH35jBvQqrT61fzKfAB/Q==} 339 | cpu: [arm] 340 | os: [linux] 341 | 342 | '@rollup/rollup-linux-arm-musleabihf@4.27.3': 343 | resolution: {integrity: sha512-Sv2GWmrJfRY57urktVLQ0VKZjNZGogVtASAgosDZ1aUB+ykPxSi3X1nWORL5Jk0sTIIwQiPH7iE3BMi9zGWfkg==} 344 | cpu: [arm] 345 | os: [linux] 346 | 347 | '@rollup/rollup-linux-arm64-gnu@4.27.3': 348 | resolution: {integrity: sha512-FPoJBLsPW2bDNWjSrwNuTPUt30VnfM8GPGRoLCYKZpPx0xiIEdFip3dH6CqgoT0RnoGXptaNziM0WlKgBc+OWQ==} 349 | cpu: [arm64] 350 | os: [linux] 351 | 352 | '@rollup/rollup-linux-arm64-musl@4.27.3': 353 | resolution: {integrity: sha512-TKxiOvBorYq4sUpA0JT+Fkh+l+G9DScnG5Dqx7wiiqVMiRSkzTclP35pE6eQQYjP4Gc8yEkJGea6rz4qyWhp3g==} 354 | cpu: [arm64] 355 | os: [linux] 356 | 357 | '@rollup/rollup-linux-powerpc64le-gnu@4.27.3': 358 | resolution: {integrity: sha512-v2M/mPvVUKVOKITa0oCFksnQQ/TqGrT+yD0184/cWHIu0LoIuYHwox0Pm3ccXEz8cEQDLk6FPKd1CCm+PlsISw==} 359 | cpu: [ppc64] 360 | os: [linux] 361 | 362 | '@rollup/rollup-linux-riscv64-gnu@4.27.3': 363 | resolution: {integrity: sha512-LdrI4Yocb1a/tFVkzmOE5WyYRgEBOyEhWYJe4gsDWDiwnjYKjNs7PS6SGlTDB7maOHF4kxevsuNBl2iOcj3b4A==} 364 | cpu: [riscv64] 365 | os: [linux] 366 | 367 | '@rollup/rollup-linux-s390x-gnu@4.27.3': 368 | resolution: {integrity: sha512-d4wVu6SXij/jyiwPvI6C4KxdGzuZOvJ6y9VfrcleHTwo68fl8vZC5ZYHsCVPUi4tndCfMlFniWgwonQ5CUpQcA==} 369 | cpu: [s390x] 370 | os: [linux] 371 | 372 | '@rollup/rollup-linux-x64-gnu@4.27.3': 373 | resolution: {integrity: sha512-/6bn6pp1fsCGEY5n3yajmzZQAh+mW4QPItbiWxs69zskBzJuheb3tNynEjL+mKOsUSFK11X4LYF2BwwXnzWleA==} 374 | cpu: [x64] 375 | os: [linux] 376 | 377 | '@rollup/rollup-linux-x64-musl@4.27.3': 378 | resolution: {integrity: sha512-nBXOfJds8OzUT1qUreT/en3eyOXd2EH5b0wr2bVB5999qHdGKkzGzIyKYaKj02lXk6wpN71ltLIaQpu58YFBoQ==} 379 | cpu: [x64] 380 | os: [linux] 381 | 382 | '@rollup/rollup-win32-arm64-msvc@4.27.3': 383 | resolution: {integrity: sha512-ogfbEVQgIZOz5WPWXF2HVb6En+kWzScuxJo/WdQTqEgeyGkaa2ui5sQav9Zkr7bnNCLK48uxmmK0TySm22eiuw==} 384 | cpu: [arm64] 385 | os: [win32] 386 | 387 | '@rollup/rollup-win32-ia32-msvc@4.27.3': 388 | resolution: {integrity: sha512-ecE36ZBMLINqiTtSNQ1vzWc5pXLQHlf/oqGp/bSbi7iedcjcNb6QbCBNG73Euyy2C+l/fn8qKWEwxr+0SSfs3w==} 389 | cpu: [ia32] 390 | os: [win32] 391 | 392 | '@rollup/rollup-win32-x64-msvc@4.27.3': 393 | resolution: {integrity: sha512-vliZLrDmYKyaUoMzEbMTg2JkerfBjn03KmAw9CykO0Zzkzoyd7o3iZNam/TpyWNjNT+Cz2iO3P9Smv2wgrR+Eg==} 394 | cpu: [x64] 395 | os: [win32] 396 | 397 | '@sveltejs/adapter-auto@3.3.1': 398 | resolution: {integrity: sha512-5Sc7WAxYdL6q9j/+D0jJKjGREGlfIevDyHSQ2eNETHcB1TKlQWHcAo8AS8H1QdjNvSXpvOwNjykDUHPEAyGgdQ==} 399 | peerDependencies: 400 | '@sveltejs/kit': ^2.0.0 401 | 402 | '@sveltejs/kit@2.8.1': 403 | resolution: {integrity: sha512-uuOfFwZ4xvnfPsiTB6a4H1ljjTUksGhWnYq5X/Y9z4x5+3uM2Md8q/YVeHL+7w+mygAwoEFdgKZ8YkUuk+VKww==} 404 | engines: {node: '>=18.13'} 405 | hasBin: true 406 | peerDependencies: 407 | '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 408 | svelte: ^4.0.0 || ^5.0.0-next.0 409 | vite: ^5.0.3 410 | 411 | '@sveltejs/vite-plugin-svelte-inspector@2.1.0': 412 | resolution: {integrity: sha512-9QX28IymvBlSCqsCll5t0kQVxipsfhFFL+L2t3nTWfXnddYwxBuAEtTtlaVQpRz9c37BhJjltSeY4AJSC03SSg==} 413 | engines: {node: ^18.0.0 || >=20} 414 | peerDependencies: 415 | '@sveltejs/vite-plugin-svelte': ^3.0.0 416 | svelte: ^4.0.0 || ^5.0.0-next.0 417 | vite: ^5.0.0 418 | 419 | '@sveltejs/vite-plugin-svelte@3.1.2': 420 | resolution: {integrity: sha512-Txsm1tJvtiYeLUVRNqxZGKR/mI+CzuIQuc2gn+YCs9rMTowpNZ2Nqt53JdL8KF9bLhAf2ruR/dr9eZCwdTriRA==} 421 | engines: {node: ^18.0.0 || >=20} 422 | peerDependencies: 423 | svelte: ^4.0.0 || ^5.0.0-next.0 424 | vite: ^5.0.0 425 | 426 | '@types/cookie@0.6.0': 427 | resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 428 | 429 | '@types/eslint@8.56.0': 430 | resolution: {integrity: sha512-FlsN0p4FhuYRjIxpbdXovvHQhtlG05O1GG/RNWvdAxTboR438IOTwmrY/vLA+Xfgg06BTkP045M3vpFwTMv1dg==} 431 | 432 | '@types/estree@1.0.6': 433 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 434 | 435 | '@types/json-schema@7.0.15': 436 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 437 | 438 | '@types/pug@2.0.10': 439 | resolution: {integrity: sha512-Sk/uYFOBAB7mb74XcpizmH0KOR2Pv3D2Hmrh1Dmy5BmK3MpdSa5kqZcg6EKBdklU0bFXX9gCfzvpnyUehrPIuA==} 440 | 441 | '@types/semver@7.5.8': 442 | resolution: {integrity: sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==} 443 | 444 | '@typescript-eslint/eslint-plugin@6.21.0': 445 | resolution: {integrity: sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA==} 446 | engines: {node: ^16.0.0 || >=18.0.0} 447 | peerDependencies: 448 | '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha 449 | eslint: ^7.0.0 || ^8.0.0 450 | typescript: '*' 451 | peerDependenciesMeta: 452 | typescript: 453 | optional: true 454 | 455 | '@typescript-eslint/parser@6.21.0': 456 | resolution: {integrity: sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==} 457 | engines: {node: ^16.0.0 || >=18.0.0} 458 | peerDependencies: 459 | eslint: ^7.0.0 || ^8.0.0 460 | typescript: '*' 461 | peerDependenciesMeta: 462 | typescript: 463 | optional: true 464 | 465 | '@typescript-eslint/scope-manager@6.21.0': 466 | resolution: {integrity: sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==} 467 | engines: {node: ^16.0.0 || >=18.0.0} 468 | 469 | '@typescript-eslint/type-utils@6.21.0': 470 | resolution: {integrity: sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag==} 471 | engines: {node: ^16.0.0 || >=18.0.0} 472 | peerDependencies: 473 | eslint: ^7.0.0 || ^8.0.0 474 | typescript: '*' 475 | peerDependenciesMeta: 476 | typescript: 477 | optional: true 478 | 479 | '@typescript-eslint/types@6.21.0': 480 | resolution: {integrity: sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==} 481 | engines: {node: ^16.0.0 || >=18.0.0} 482 | 483 | '@typescript-eslint/typescript-estree@6.21.0': 484 | resolution: {integrity: sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==} 485 | engines: {node: ^16.0.0 || >=18.0.0} 486 | peerDependencies: 487 | typescript: '*' 488 | peerDependenciesMeta: 489 | typescript: 490 | optional: true 491 | 492 | '@typescript-eslint/utils@6.21.0': 493 | resolution: {integrity: sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ==} 494 | engines: {node: ^16.0.0 || >=18.0.0} 495 | peerDependencies: 496 | eslint: ^7.0.0 || ^8.0.0 497 | 498 | '@typescript-eslint/visitor-keys@6.21.0': 499 | resolution: {integrity: sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==} 500 | engines: {node: ^16.0.0 || >=18.0.0} 501 | 502 | '@ungap/structured-clone@1.2.0': 503 | resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} 504 | 505 | acorn-jsx@5.3.2: 506 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 507 | peerDependencies: 508 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 509 | 510 | acorn@8.14.0: 511 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 512 | engines: {node: '>=0.4.0'} 513 | hasBin: true 514 | 515 | ajv@6.12.6: 516 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 517 | 518 | ansi-regex@5.0.1: 519 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 520 | engines: {node: '>=8'} 521 | 522 | ansi-styles@4.3.0: 523 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 524 | engines: {node: '>=8'} 525 | 526 | anymatch@3.1.3: 527 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 528 | engines: {node: '>= 8'} 529 | 530 | argparse@2.0.1: 531 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 532 | 533 | aria-query@5.3.2: 534 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 535 | engines: {node: '>= 0.4'} 536 | 537 | array-union@2.1.0: 538 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 539 | engines: {node: '>=8'} 540 | 541 | axobject-query@4.1.0: 542 | resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 543 | engines: {node: '>= 0.4'} 544 | 545 | balanced-match@1.0.2: 546 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 547 | 548 | binary-extensions@2.3.0: 549 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==} 550 | engines: {node: '>=8'} 551 | 552 | brace-expansion@1.1.11: 553 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 554 | 555 | brace-expansion@2.0.1: 556 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 557 | 558 | braces@3.0.3: 559 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 560 | engines: {node: '>=8'} 561 | 562 | buffer-crc32@1.0.0: 563 | resolution: {integrity: sha512-Db1SbgBS/fg/392AblrMJk97KggmvYhr4pB5ZIMTWtaivCPMWLkmb7m21cJvpvgK+J3nsU2CmmixNBZx4vFj/w==} 564 | engines: {node: '>=8.0.0'} 565 | 566 | callsites@3.1.0: 567 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 568 | engines: {node: '>=6'} 569 | 570 | chalk@4.1.2: 571 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 572 | engines: {node: '>=10'} 573 | 574 | chokidar@3.6.0: 575 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==} 576 | engines: {node: '>= 8.10.0'} 577 | 578 | code-red@1.0.4: 579 | resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==} 580 | 581 | color-convert@2.0.1: 582 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 583 | engines: {node: '>=7.0.0'} 584 | 585 | color-name@1.1.4: 586 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 587 | 588 | concat-map@0.0.1: 589 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 590 | 591 | cookie@0.6.0: 592 | resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} 593 | engines: {node: '>= 0.6'} 594 | 595 | cross-spawn@7.0.6: 596 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 597 | engines: {node: '>= 8'} 598 | 599 | css-tree@2.3.1: 600 | resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} 601 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} 602 | 603 | cssesc@3.0.0: 604 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 605 | engines: {node: '>=4'} 606 | hasBin: true 607 | 608 | debug@4.3.7: 609 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 610 | engines: {node: '>=6.0'} 611 | peerDependencies: 612 | supports-color: '*' 613 | peerDependenciesMeta: 614 | supports-color: 615 | optional: true 616 | 617 | deep-is@0.1.4: 618 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 619 | 620 | deepmerge@4.3.1: 621 | resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 622 | engines: {node: '>=0.10.0'} 623 | 624 | detect-indent@6.1.0: 625 | resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} 626 | engines: {node: '>=8'} 627 | 628 | devalue@5.1.1: 629 | resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} 630 | 631 | dir-glob@3.0.1: 632 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 633 | engines: {node: '>=8'} 634 | 635 | doctrine@3.0.0: 636 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 637 | engines: {node: '>=6.0.0'} 638 | 639 | es6-promise@3.3.1: 640 | resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} 641 | 642 | esbuild@0.21.5: 643 | resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 644 | engines: {node: '>=12'} 645 | hasBin: true 646 | 647 | escape-string-regexp@4.0.0: 648 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 649 | engines: {node: '>=10'} 650 | 651 | eslint-compat-utils@0.5.1: 652 | resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} 653 | engines: {node: '>=12'} 654 | peerDependencies: 655 | eslint: '>=6.0.0' 656 | 657 | eslint-config-prettier@9.1.0: 658 | resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} 659 | hasBin: true 660 | peerDependencies: 661 | eslint: '>=7.0.0' 662 | 663 | eslint-plugin-svelte@2.46.0: 664 | resolution: {integrity: sha512-1A7iEMkzmCZ9/Iz+EAfOGYL8IoIG6zeKEq1SmpxGeM5SXmoQq+ZNnCpXFVJpsxPWYx8jIVGMerQMzX20cqUl0g==} 665 | engines: {node: ^14.17.0 || >=16.0.0} 666 | peerDependencies: 667 | eslint: ^7.0.0 || ^8.0.0-0 || ^9.0.0-0 668 | svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 669 | peerDependenciesMeta: 670 | svelte: 671 | optional: true 672 | 673 | eslint-scope@7.2.2: 674 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 675 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 676 | 677 | eslint-visitor-keys@3.4.3: 678 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 679 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 680 | 681 | eslint@8.57.1: 682 | resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} 683 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 684 | deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. 685 | hasBin: true 686 | 687 | esm-env@1.1.4: 688 | resolution: {integrity: sha512-oO82nKPHKkzIj/hbtuDYy/JHqBHFlMIW36SDiPCVsj87ntDLcWN+sJ1erdVryd4NxODacFTsdrIE3b7IamqbOg==} 689 | 690 | espree@9.6.1: 691 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 692 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 693 | 694 | esquery@1.6.0: 695 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 696 | engines: {node: '>=0.10'} 697 | 698 | esrecurse@4.3.0: 699 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 700 | engines: {node: '>=4.0'} 701 | 702 | estraverse@5.3.0: 703 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 704 | engines: {node: '>=4.0'} 705 | 706 | estree-walker@3.0.3: 707 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 708 | 709 | esutils@2.0.3: 710 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 711 | engines: {node: '>=0.10.0'} 712 | 713 | fast-deep-equal@3.1.3: 714 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 715 | 716 | fast-glob@3.3.2: 717 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} 718 | engines: {node: '>=8.6.0'} 719 | 720 | fast-json-stable-stringify@2.1.0: 721 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 722 | 723 | fast-levenshtein@2.0.6: 724 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 725 | 726 | fastq@1.17.1: 727 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 728 | 729 | file-entry-cache@6.0.1: 730 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 731 | engines: {node: ^10.12.0 || >=12.0.0} 732 | 733 | fill-range@7.1.1: 734 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 735 | engines: {node: '>=8'} 736 | 737 | find-up@5.0.0: 738 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 739 | engines: {node: '>=10'} 740 | 741 | flat-cache@3.2.0: 742 | resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} 743 | engines: {node: ^10.12.0 || >=12.0.0} 744 | 745 | flatted@3.3.2: 746 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} 747 | 748 | fs.realpath@1.0.0: 749 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 750 | 751 | fsevents@2.3.3: 752 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 753 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 754 | os: [darwin] 755 | 756 | glob-parent@5.1.2: 757 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 758 | engines: {node: '>= 6'} 759 | 760 | glob-parent@6.0.2: 761 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 762 | engines: {node: '>=10.13.0'} 763 | 764 | glob@7.2.3: 765 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 766 | deprecated: Glob versions prior to v9 are no longer supported 767 | 768 | globals@13.24.0: 769 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 770 | engines: {node: '>=8'} 771 | 772 | globalyzer@0.1.0: 773 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} 774 | 775 | globby@11.1.0: 776 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 777 | engines: {node: '>=10'} 778 | 779 | globrex@0.1.2: 780 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 781 | 782 | graceful-fs@4.2.11: 783 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 784 | 785 | graphemer@1.4.0: 786 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 787 | 788 | has-flag@4.0.0: 789 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 790 | engines: {node: '>=8'} 791 | 792 | ignore@5.3.2: 793 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 794 | engines: {node: '>= 4'} 795 | 796 | import-fresh@3.3.0: 797 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 798 | engines: {node: '>=6'} 799 | 800 | import-meta-resolve@4.1.0: 801 | resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 802 | 803 | imurmurhash@0.1.4: 804 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 805 | engines: {node: '>=0.8.19'} 806 | 807 | inflight@1.0.6: 808 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 809 | deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. 810 | 811 | inherits@2.0.4: 812 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 813 | 814 | is-binary-path@2.1.0: 815 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 816 | engines: {node: '>=8'} 817 | 818 | is-extglob@2.1.1: 819 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 820 | engines: {node: '>=0.10.0'} 821 | 822 | is-glob@4.0.3: 823 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 824 | engines: {node: '>=0.10.0'} 825 | 826 | is-number@7.0.0: 827 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 828 | engines: {node: '>=0.12.0'} 829 | 830 | is-path-inside@3.0.3: 831 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 832 | engines: {node: '>=8'} 833 | 834 | is-reference@3.0.3: 835 | resolution: {integrity: sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==} 836 | 837 | isexe@2.0.0: 838 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 839 | 840 | jose@5.9.6: 841 | resolution: {integrity: sha512-AMlnetc9+CV9asI19zHmrgS/WYsWUwCn2R7RzlbJWD7F9eWYUTGyBmU9o6PxngtLGOiDGPRu+Uc4fhKzbpteZQ==} 842 | 843 | js-yaml@4.1.0: 844 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 845 | hasBin: true 846 | 847 | json-buffer@3.0.1: 848 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 849 | 850 | json-schema-traverse@0.4.1: 851 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 852 | 853 | json-stable-stringify-without-jsonify@1.0.1: 854 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 855 | 856 | keyv@4.5.4: 857 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 858 | 859 | kleur@4.1.5: 860 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 861 | engines: {node: '>=6'} 862 | 863 | known-css-properties@0.35.0: 864 | resolution: {integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==} 865 | 866 | levn@0.4.1: 867 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 868 | engines: {node: '>= 0.8.0'} 869 | 870 | lilconfig@2.1.0: 871 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 872 | engines: {node: '>=10'} 873 | 874 | locate-character@3.0.0: 875 | resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} 876 | 877 | locate-path@6.0.0: 878 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 879 | engines: {node: '>=10'} 880 | 881 | lodash.merge@4.6.2: 882 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 883 | 884 | magic-string@0.30.13: 885 | resolution: {integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==} 886 | 887 | mdn-data@2.0.30: 888 | resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} 889 | 890 | merge2@1.4.1: 891 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 892 | engines: {node: '>= 8'} 893 | 894 | micromatch@4.0.8: 895 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 896 | engines: {node: '>=8.6'} 897 | 898 | min-indent@1.0.1: 899 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 900 | engines: {node: '>=4'} 901 | 902 | minimatch@3.1.2: 903 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 904 | 905 | minimatch@9.0.3: 906 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 907 | engines: {node: '>=16 || 14 >=14.17'} 908 | 909 | minimist@1.2.8: 910 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 911 | 912 | mkdirp@0.5.6: 913 | resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} 914 | hasBin: true 915 | 916 | mri@1.2.0: 917 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 918 | engines: {node: '>=4'} 919 | 920 | mrmime@2.0.0: 921 | resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} 922 | engines: {node: '>=10'} 923 | 924 | ms@2.1.3: 925 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 926 | 927 | nanoid@3.3.7: 928 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 929 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 930 | hasBin: true 931 | 932 | natural-compare@1.4.0: 933 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 934 | 935 | normalize-path@3.0.0: 936 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 937 | engines: {node: '>=0.10.0'} 938 | 939 | oauth4webapi@3.1.3: 940 | resolution: {integrity: sha512-dik5wEMdFL5p3JlijYvM7wMNCgaPhblLIDCZtdXcaZp5wgu5Iwmsu7lMzgFhIDTi5d0BJo03LVoOoFQvXMeOeQ==} 941 | 942 | once@1.4.0: 943 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 944 | 945 | optionator@0.9.4: 946 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 947 | engines: {node: '>= 0.8.0'} 948 | 949 | p-limit@3.1.0: 950 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 951 | engines: {node: '>=10'} 952 | 953 | p-locate@5.0.0: 954 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 955 | engines: {node: '>=10'} 956 | 957 | parent-module@1.0.1: 958 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 959 | engines: {node: '>=6'} 960 | 961 | path-exists@4.0.0: 962 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 963 | engines: {node: '>=8'} 964 | 965 | path-is-absolute@1.0.1: 966 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 967 | engines: {node: '>=0.10.0'} 968 | 969 | path-key@3.1.1: 970 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 971 | engines: {node: '>=8'} 972 | 973 | path-type@4.0.0: 974 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 975 | engines: {node: '>=8'} 976 | 977 | periscopic@3.1.0: 978 | resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} 979 | 980 | picocolors@1.1.1: 981 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 982 | 983 | picomatch@2.3.1: 984 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 985 | engines: {node: '>=8.6'} 986 | 987 | postcss-load-config@3.1.4: 988 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} 989 | engines: {node: '>= 10'} 990 | peerDependencies: 991 | postcss: '>=8.0.9' 992 | ts-node: '>=9.0.0' 993 | peerDependenciesMeta: 994 | postcss: 995 | optional: true 996 | ts-node: 997 | optional: true 998 | 999 | postcss-safe-parser@6.0.0: 1000 | resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} 1001 | engines: {node: '>=12.0'} 1002 | peerDependencies: 1003 | postcss: ^8.3.3 1004 | 1005 | postcss-scss@4.0.9: 1006 | resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==} 1007 | engines: {node: '>=12.0'} 1008 | peerDependencies: 1009 | postcss: ^8.4.29 1010 | 1011 | postcss-selector-parser@6.1.2: 1012 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1013 | engines: {node: '>=4'} 1014 | 1015 | postcss@8.4.49: 1016 | resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} 1017 | engines: {node: ^10 || ^12 || >=14} 1018 | 1019 | preact-render-to-string@6.5.11: 1020 | resolution: {integrity: sha512-ubnauqoGczeGISiOh6RjX0/cdaF8v/oDXIjO85XALCQjwQP+SB4RDXXtvZ6yTYSjG+PC1QRP2AhPgCEsM2EvUw==} 1021 | peerDependencies: 1022 | preact: '>=10' 1023 | 1024 | preact@10.24.3: 1025 | resolution: {integrity: sha512-Z2dPnBnMUfyQfSQ+GBdsGa16hz35YmLmtTLhM169uW944hYL6xzTYkJjC07j+Wosz733pMWx0fgON3JNw1jJQA==} 1026 | 1027 | prelude-ls@1.2.1: 1028 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1029 | engines: {node: '>= 0.8.0'} 1030 | 1031 | prettier-plugin-svelte@3.2.8: 1032 | resolution: {integrity: sha512-PAHmmU5cGZdnhW4mWhmvxuG2PVbbHIxUuPOdUKvfE+d4Qt2d29iU5VWrPdsaW5YqVEE0nqhlvN4eoKmVMpIF3Q==} 1033 | peerDependencies: 1034 | prettier: ^3.0.0 1035 | svelte: ^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0 1036 | 1037 | prettier@3.3.3: 1038 | resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} 1039 | engines: {node: '>=14'} 1040 | hasBin: true 1041 | 1042 | punycode@2.3.1: 1043 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1044 | engines: {node: '>=6'} 1045 | 1046 | queue-microtask@1.2.3: 1047 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1048 | 1049 | readdirp@3.6.0: 1050 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 1051 | engines: {node: '>=8.10.0'} 1052 | 1053 | resolve-from@4.0.0: 1054 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1055 | engines: {node: '>=4'} 1056 | 1057 | reusify@1.0.4: 1058 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1059 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1060 | 1061 | rimraf@2.7.1: 1062 | resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} 1063 | deprecated: Rimraf versions prior to v4 are no longer supported 1064 | hasBin: true 1065 | 1066 | rimraf@3.0.2: 1067 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 1068 | deprecated: Rimraf versions prior to v4 are no longer supported 1069 | hasBin: true 1070 | 1071 | rollup@4.27.3: 1072 | resolution: {integrity: sha512-SLsCOnlmGt9VoZ9Ek8yBK8tAdmPHeppkw+Xa7yDlCEhDTvwYei03JlWo1fdc7YTfLZ4tD8riJCUyAgTbszk1fQ==} 1073 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1074 | hasBin: true 1075 | 1076 | run-parallel@1.2.0: 1077 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1078 | 1079 | sade@1.8.1: 1080 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 1081 | engines: {node: '>=6'} 1082 | 1083 | sander@0.5.1: 1084 | resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} 1085 | 1086 | semver@7.6.3: 1087 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1088 | engines: {node: '>=10'} 1089 | hasBin: true 1090 | 1091 | set-cookie-parser@2.7.1: 1092 | resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==} 1093 | 1094 | shebang-command@2.0.0: 1095 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1096 | engines: {node: '>=8'} 1097 | 1098 | shebang-regex@3.0.0: 1099 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1100 | engines: {node: '>=8'} 1101 | 1102 | sirv@3.0.0: 1103 | resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==} 1104 | engines: {node: '>=18'} 1105 | 1106 | slash@3.0.0: 1107 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 1108 | engines: {node: '>=8'} 1109 | 1110 | sorcery@0.11.1: 1111 | resolution: {integrity: sha512-o7npfeJE6wi6J9l0/5LKshFzZ2rMatRiCDwYeDQaOzqdzRJwALhX7mk/A/ecg6wjMu7wdZbmXfD2S/vpOg0bdQ==} 1112 | hasBin: true 1113 | 1114 | source-map-js@1.2.1: 1115 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1116 | engines: {node: '>=0.10.0'} 1117 | 1118 | strip-ansi@6.0.1: 1119 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1120 | engines: {node: '>=8'} 1121 | 1122 | strip-indent@3.0.0: 1123 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 1124 | engines: {node: '>=8'} 1125 | 1126 | strip-json-comments@3.1.1: 1127 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1128 | engines: {node: '>=8'} 1129 | 1130 | supports-color@7.2.0: 1131 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1132 | engines: {node: '>=8'} 1133 | 1134 | svelte-check@3.8.6: 1135 | resolution: {integrity: sha512-ij0u4Lw/sOTREP13BdWZjiXD/BlHE6/e2e34XzmVmsp5IN4kVa3PWP65NM32JAgwjZlwBg/+JtiNV1MM8khu0Q==} 1136 | hasBin: true 1137 | peerDependencies: 1138 | svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 1139 | 1140 | svelte-eslint-parser@0.43.0: 1141 | resolution: {integrity: sha512-GpU52uPKKcVnh8tKN5P4UZpJ/fUDndmq7wfsvoVXsyP+aY0anol7Yqo01fyrlaWGMFfm4av5DyrjlaXdLRJvGA==} 1142 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1143 | peerDependencies: 1144 | svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 1145 | peerDependenciesMeta: 1146 | svelte: 1147 | optional: true 1148 | 1149 | svelte-hmr@0.16.0: 1150 | resolution: {integrity: sha512-Gyc7cOS3VJzLlfj7wKS0ZnzDVdv3Pn2IuVeJPk9m2skfhcu5bq3wtIZyQGggr7/Iim5rH5cncyQft/kRLupcnA==} 1151 | engines: {node: ^12.20 || ^14.13.1 || >= 16} 1152 | peerDependencies: 1153 | svelte: ^3.19.0 || ^4.0.0 1154 | 1155 | svelte-preprocess@5.1.4: 1156 | resolution: {integrity: sha512-IvnbQ6D6Ao3Gg6ftiM5tdbR6aAETwjhHV+UKGf5bHGYR69RQvF1ho0JKPcbUON4vy4R7zom13jPjgdOWCQ5hDA==} 1157 | engines: {node: '>= 16.0.0'} 1158 | peerDependencies: 1159 | '@babel/core': ^7.10.2 1160 | coffeescript: ^2.5.1 1161 | less: ^3.11.3 || ^4.0.0 1162 | postcss: ^7 || ^8 1163 | postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 1164 | pug: ^3.0.0 1165 | sass: ^1.26.8 1166 | stylus: ^0.55.0 1167 | sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0 1168 | svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 || ^5.0.0-next.0 1169 | typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0' 1170 | peerDependenciesMeta: 1171 | '@babel/core': 1172 | optional: true 1173 | coffeescript: 1174 | optional: true 1175 | less: 1176 | optional: true 1177 | postcss: 1178 | optional: true 1179 | postcss-load-config: 1180 | optional: true 1181 | pug: 1182 | optional: true 1183 | sass: 1184 | optional: true 1185 | stylus: 1186 | optional: true 1187 | sugarss: 1188 | optional: true 1189 | typescript: 1190 | optional: true 1191 | 1192 | svelte@4.2.19: 1193 | resolution: {integrity: sha512-IY1rnGr6izd10B0A8LqsBfmlT5OILVuZ7XsI0vdGPEvuonFV7NYEUK4dAkm9Zg2q0Um92kYjTpS1CAP3Nh/KWw==} 1194 | engines: {node: '>=16'} 1195 | 1196 | text-table@0.2.0: 1197 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1198 | 1199 | tiny-glob@0.2.9: 1200 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} 1201 | 1202 | to-regex-range@5.0.1: 1203 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1204 | engines: {node: '>=8.0'} 1205 | 1206 | totalist@3.0.1: 1207 | resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} 1208 | engines: {node: '>=6'} 1209 | 1210 | ts-api-utils@1.4.0: 1211 | resolution: {integrity: sha512-032cPxaEKwM+GT3vA5JXNzIaizx388rhsSW79vGRNGXfRRAdEAn2mvk36PvK5HnOchyWZ7afLEXqYCvPCrzuzQ==} 1212 | engines: {node: '>=16'} 1213 | peerDependencies: 1214 | typescript: '>=4.2.0' 1215 | 1216 | tslib@2.8.1: 1217 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1218 | 1219 | type-check@0.4.0: 1220 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1221 | engines: {node: '>= 0.8.0'} 1222 | 1223 | type-fest@0.20.2: 1224 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 1225 | engines: {node: '>=10'} 1226 | 1227 | typescript@5.6.3: 1228 | resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} 1229 | engines: {node: '>=14.17'} 1230 | hasBin: true 1231 | 1232 | uri-js@4.4.1: 1233 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1234 | 1235 | util-deprecate@1.0.2: 1236 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 1237 | 1238 | vite@5.4.11: 1239 | resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} 1240 | engines: {node: ^18.0.0 || >=20.0.0} 1241 | hasBin: true 1242 | peerDependencies: 1243 | '@types/node': ^18.0.0 || >=20.0.0 1244 | less: '*' 1245 | lightningcss: ^1.21.0 1246 | sass: '*' 1247 | sass-embedded: '*' 1248 | stylus: '*' 1249 | sugarss: '*' 1250 | terser: ^5.4.0 1251 | peerDependenciesMeta: 1252 | '@types/node': 1253 | optional: true 1254 | less: 1255 | optional: true 1256 | lightningcss: 1257 | optional: true 1258 | sass: 1259 | optional: true 1260 | sass-embedded: 1261 | optional: true 1262 | stylus: 1263 | optional: true 1264 | sugarss: 1265 | optional: true 1266 | terser: 1267 | optional: true 1268 | 1269 | vitefu@0.2.5: 1270 | resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} 1271 | peerDependencies: 1272 | vite: ^3.0.0 || ^4.0.0 || ^5.0.0 1273 | peerDependenciesMeta: 1274 | vite: 1275 | optional: true 1276 | 1277 | which@2.0.2: 1278 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1279 | engines: {node: '>= 8'} 1280 | hasBin: true 1281 | 1282 | word-wrap@1.2.5: 1283 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1284 | engines: {node: '>=0.10.0'} 1285 | 1286 | wrappy@1.0.2: 1287 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 1288 | 1289 | yaml@1.10.2: 1290 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 1291 | engines: {node: '>= 6'} 1292 | 1293 | yocto-queue@0.1.0: 1294 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1295 | engines: {node: '>=10'} 1296 | 1297 | snapshots: 1298 | 1299 | '@ampproject/remapping@2.3.0': 1300 | dependencies: 1301 | '@jridgewell/gen-mapping': 0.3.5 1302 | '@jridgewell/trace-mapping': 0.3.25 1303 | 1304 | '@auth/core@0.37.4': 1305 | dependencies: 1306 | '@panva/hkdf': 1.2.1 1307 | jose: 5.9.6 1308 | oauth4webapi: 3.1.3 1309 | preact: 10.24.3 1310 | preact-render-to-string: 6.5.11(preact@10.24.3) 1311 | 1312 | '@auth/sveltekit@1.7.4(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)': 1313 | dependencies: 1314 | '@auth/core': 0.37.4 1315 | '@sveltejs/kit': 2.8.1(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11) 1316 | set-cookie-parser: 2.7.1 1317 | svelte: 4.2.19 1318 | 1319 | '@esbuild/aix-ppc64@0.21.5': 1320 | optional: true 1321 | 1322 | '@esbuild/android-arm64@0.21.5': 1323 | optional: true 1324 | 1325 | '@esbuild/android-arm@0.21.5': 1326 | optional: true 1327 | 1328 | '@esbuild/android-x64@0.21.5': 1329 | optional: true 1330 | 1331 | '@esbuild/darwin-arm64@0.21.5': 1332 | optional: true 1333 | 1334 | '@esbuild/darwin-x64@0.21.5': 1335 | optional: true 1336 | 1337 | '@esbuild/freebsd-arm64@0.21.5': 1338 | optional: true 1339 | 1340 | '@esbuild/freebsd-x64@0.21.5': 1341 | optional: true 1342 | 1343 | '@esbuild/linux-arm64@0.21.5': 1344 | optional: true 1345 | 1346 | '@esbuild/linux-arm@0.21.5': 1347 | optional: true 1348 | 1349 | '@esbuild/linux-ia32@0.21.5': 1350 | optional: true 1351 | 1352 | '@esbuild/linux-loong64@0.21.5': 1353 | optional: true 1354 | 1355 | '@esbuild/linux-mips64el@0.21.5': 1356 | optional: true 1357 | 1358 | '@esbuild/linux-ppc64@0.21.5': 1359 | optional: true 1360 | 1361 | '@esbuild/linux-riscv64@0.21.5': 1362 | optional: true 1363 | 1364 | '@esbuild/linux-s390x@0.21.5': 1365 | optional: true 1366 | 1367 | '@esbuild/linux-x64@0.21.5': 1368 | optional: true 1369 | 1370 | '@esbuild/netbsd-x64@0.21.5': 1371 | optional: true 1372 | 1373 | '@esbuild/openbsd-x64@0.21.5': 1374 | optional: true 1375 | 1376 | '@esbuild/sunos-x64@0.21.5': 1377 | optional: true 1378 | 1379 | '@esbuild/win32-arm64@0.21.5': 1380 | optional: true 1381 | 1382 | '@esbuild/win32-ia32@0.21.5': 1383 | optional: true 1384 | 1385 | '@esbuild/win32-x64@0.21.5': 1386 | optional: true 1387 | 1388 | '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)': 1389 | dependencies: 1390 | eslint: 8.57.1 1391 | eslint-visitor-keys: 3.4.3 1392 | 1393 | '@eslint-community/regexpp@4.12.1': {} 1394 | 1395 | '@eslint/eslintrc@2.1.4': 1396 | dependencies: 1397 | ajv: 6.12.6 1398 | debug: 4.3.7 1399 | espree: 9.6.1 1400 | globals: 13.24.0 1401 | ignore: 5.3.2 1402 | import-fresh: 3.3.0 1403 | js-yaml: 4.1.0 1404 | minimatch: 3.1.2 1405 | strip-json-comments: 3.1.1 1406 | transitivePeerDependencies: 1407 | - supports-color 1408 | 1409 | '@eslint/js@8.57.1': {} 1410 | 1411 | '@humanwhocodes/config-array@0.13.0': 1412 | dependencies: 1413 | '@humanwhocodes/object-schema': 2.0.3 1414 | debug: 4.3.7 1415 | minimatch: 3.1.2 1416 | transitivePeerDependencies: 1417 | - supports-color 1418 | 1419 | '@humanwhocodes/module-importer@1.0.1': {} 1420 | 1421 | '@humanwhocodes/object-schema@2.0.3': {} 1422 | 1423 | '@jridgewell/gen-mapping@0.3.5': 1424 | dependencies: 1425 | '@jridgewell/set-array': 1.2.1 1426 | '@jridgewell/sourcemap-codec': 1.5.0 1427 | '@jridgewell/trace-mapping': 0.3.25 1428 | 1429 | '@jridgewell/resolve-uri@3.1.2': {} 1430 | 1431 | '@jridgewell/set-array@1.2.1': {} 1432 | 1433 | '@jridgewell/sourcemap-codec@1.5.0': {} 1434 | 1435 | '@jridgewell/trace-mapping@0.3.25': 1436 | dependencies: 1437 | '@jridgewell/resolve-uri': 3.1.2 1438 | '@jridgewell/sourcemap-codec': 1.5.0 1439 | 1440 | '@nodelib/fs.scandir@2.1.5': 1441 | dependencies: 1442 | '@nodelib/fs.stat': 2.0.5 1443 | run-parallel: 1.2.0 1444 | 1445 | '@nodelib/fs.stat@2.0.5': {} 1446 | 1447 | '@nodelib/fs.walk@1.2.8': 1448 | dependencies: 1449 | '@nodelib/fs.scandir': 2.1.5 1450 | fastq: 1.17.1 1451 | 1452 | '@panva/hkdf@1.2.1': {} 1453 | 1454 | '@polka/url@1.0.0-next.28': {} 1455 | 1456 | '@rollup/rollup-android-arm-eabi@4.27.3': 1457 | optional: true 1458 | 1459 | '@rollup/rollup-android-arm64@4.27.3': 1460 | optional: true 1461 | 1462 | '@rollup/rollup-darwin-arm64@4.27.3': 1463 | optional: true 1464 | 1465 | '@rollup/rollup-darwin-x64@4.27.3': 1466 | optional: true 1467 | 1468 | '@rollup/rollup-freebsd-arm64@4.27.3': 1469 | optional: true 1470 | 1471 | '@rollup/rollup-freebsd-x64@4.27.3': 1472 | optional: true 1473 | 1474 | '@rollup/rollup-linux-arm-gnueabihf@4.27.3': 1475 | optional: true 1476 | 1477 | '@rollup/rollup-linux-arm-musleabihf@4.27.3': 1478 | optional: true 1479 | 1480 | '@rollup/rollup-linux-arm64-gnu@4.27.3': 1481 | optional: true 1482 | 1483 | '@rollup/rollup-linux-arm64-musl@4.27.3': 1484 | optional: true 1485 | 1486 | '@rollup/rollup-linux-powerpc64le-gnu@4.27.3': 1487 | optional: true 1488 | 1489 | '@rollup/rollup-linux-riscv64-gnu@4.27.3': 1490 | optional: true 1491 | 1492 | '@rollup/rollup-linux-s390x-gnu@4.27.3': 1493 | optional: true 1494 | 1495 | '@rollup/rollup-linux-x64-gnu@4.27.3': 1496 | optional: true 1497 | 1498 | '@rollup/rollup-linux-x64-musl@4.27.3': 1499 | optional: true 1500 | 1501 | '@rollup/rollup-win32-arm64-msvc@4.27.3': 1502 | optional: true 1503 | 1504 | '@rollup/rollup-win32-ia32-msvc@4.27.3': 1505 | optional: true 1506 | 1507 | '@rollup/rollup-win32-x64-msvc@4.27.3': 1508 | optional: true 1509 | 1510 | '@sveltejs/adapter-auto@3.3.1(@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11))': 1511 | dependencies: 1512 | '@sveltejs/kit': 2.8.1(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11) 1513 | import-meta-resolve: 4.1.0 1514 | 1515 | '@sveltejs/kit@2.8.1(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11)': 1516 | dependencies: 1517 | '@sveltejs/vite-plugin-svelte': 3.1.2(svelte@4.2.19)(vite@5.4.11) 1518 | '@types/cookie': 0.6.0 1519 | cookie: 0.6.0 1520 | devalue: 5.1.1 1521 | esm-env: 1.1.4 1522 | import-meta-resolve: 4.1.0 1523 | kleur: 4.1.5 1524 | magic-string: 0.30.13 1525 | mrmime: 2.0.0 1526 | sade: 1.8.1 1527 | set-cookie-parser: 2.7.1 1528 | sirv: 3.0.0 1529 | svelte: 4.2.19 1530 | tiny-glob: 0.2.9 1531 | vite: 5.4.11 1532 | 1533 | '@sveltejs/vite-plugin-svelte-inspector@2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11)': 1534 | dependencies: 1535 | '@sveltejs/vite-plugin-svelte': 3.1.2(svelte@4.2.19)(vite@5.4.11) 1536 | debug: 4.3.7 1537 | svelte: 4.2.19 1538 | vite: 5.4.11 1539 | transitivePeerDependencies: 1540 | - supports-color 1541 | 1542 | '@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11)': 1543 | dependencies: 1544 | '@sveltejs/vite-plugin-svelte-inspector': 2.1.0(@sveltejs/vite-plugin-svelte@3.1.2(svelte@4.2.19)(vite@5.4.11))(svelte@4.2.19)(vite@5.4.11) 1545 | debug: 4.3.7 1546 | deepmerge: 4.3.1 1547 | kleur: 4.1.5 1548 | magic-string: 0.30.13 1549 | svelte: 4.2.19 1550 | svelte-hmr: 0.16.0(svelte@4.2.19) 1551 | vite: 5.4.11 1552 | vitefu: 0.2.5(vite@5.4.11) 1553 | transitivePeerDependencies: 1554 | - supports-color 1555 | 1556 | '@types/cookie@0.6.0': {} 1557 | 1558 | '@types/eslint@8.56.0': 1559 | dependencies: 1560 | '@types/estree': 1.0.6 1561 | '@types/json-schema': 7.0.15 1562 | 1563 | '@types/estree@1.0.6': {} 1564 | 1565 | '@types/json-schema@7.0.15': {} 1566 | 1567 | '@types/pug@2.0.10': {} 1568 | 1569 | '@types/semver@7.5.8': {} 1570 | 1571 | '@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1)(typescript@5.6.3)': 1572 | dependencies: 1573 | '@eslint-community/regexpp': 4.12.1 1574 | '@typescript-eslint/parser': 6.21.0(eslint@8.57.1)(typescript@5.6.3) 1575 | '@typescript-eslint/scope-manager': 6.21.0 1576 | '@typescript-eslint/type-utils': 6.21.0(eslint@8.57.1)(typescript@5.6.3) 1577 | '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.6.3) 1578 | '@typescript-eslint/visitor-keys': 6.21.0 1579 | debug: 4.3.7 1580 | eslint: 8.57.1 1581 | graphemer: 1.4.0 1582 | ignore: 5.3.2 1583 | natural-compare: 1.4.0 1584 | semver: 7.6.3 1585 | ts-api-utils: 1.4.0(typescript@5.6.3) 1586 | optionalDependencies: 1587 | typescript: 5.6.3 1588 | transitivePeerDependencies: 1589 | - supports-color 1590 | 1591 | '@typescript-eslint/parser@6.21.0(eslint@8.57.1)(typescript@5.6.3)': 1592 | dependencies: 1593 | '@typescript-eslint/scope-manager': 6.21.0 1594 | '@typescript-eslint/types': 6.21.0 1595 | '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3) 1596 | '@typescript-eslint/visitor-keys': 6.21.0 1597 | debug: 4.3.7 1598 | eslint: 8.57.1 1599 | optionalDependencies: 1600 | typescript: 5.6.3 1601 | transitivePeerDependencies: 1602 | - supports-color 1603 | 1604 | '@typescript-eslint/scope-manager@6.21.0': 1605 | dependencies: 1606 | '@typescript-eslint/types': 6.21.0 1607 | '@typescript-eslint/visitor-keys': 6.21.0 1608 | 1609 | '@typescript-eslint/type-utils@6.21.0(eslint@8.57.1)(typescript@5.6.3)': 1610 | dependencies: 1611 | '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3) 1612 | '@typescript-eslint/utils': 6.21.0(eslint@8.57.1)(typescript@5.6.3) 1613 | debug: 4.3.7 1614 | eslint: 8.57.1 1615 | ts-api-utils: 1.4.0(typescript@5.6.3) 1616 | optionalDependencies: 1617 | typescript: 5.6.3 1618 | transitivePeerDependencies: 1619 | - supports-color 1620 | 1621 | '@typescript-eslint/types@6.21.0': {} 1622 | 1623 | '@typescript-eslint/typescript-estree@6.21.0(typescript@5.6.3)': 1624 | dependencies: 1625 | '@typescript-eslint/types': 6.21.0 1626 | '@typescript-eslint/visitor-keys': 6.21.0 1627 | debug: 4.3.7 1628 | globby: 11.1.0 1629 | is-glob: 4.0.3 1630 | minimatch: 9.0.3 1631 | semver: 7.6.3 1632 | ts-api-utils: 1.4.0(typescript@5.6.3) 1633 | optionalDependencies: 1634 | typescript: 5.6.3 1635 | transitivePeerDependencies: 1636 | - supports-color 1637 | 1638 | '@typescript-eslint/utils@6.21.0(eslint@8.57.1)(typescript@5.6.3)': 1639 | dependencies: 1640 | '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) 1641 | '@types/json-schema': 7.0.15 1642 | '@types/semver': 7.5.8 1643 | '@typescript-eslint/scope-manager': 6.21.0 1644 | '@typescript-eslint/types': 6.21.0 1645 | '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.6.3) 1646 | eslint: 8.57.1 1647 | semver: 7.6.3 1648 | transitivePeerDependencies: 1649 | - supports-color 1650 | - typescript 1651 | 1652 | '@typescript-eslint/visitor-keys@6.21.0': 1653 | dependencies: 1654 | '@typescript-eslint/types': 6.21.0 1655 | eslint-visitor-keys: 3.4.3 1656 | 1657 | '@ungap/structured-clone@1.2.0': {} 1658 | 1659 | acorn-jsx@5.3.2(acorn@8.14.0): 1660 | dependencies: 1661 | acorn: 8.14.0 1662 | 1663 | acorn@8.14.0: {} 1664 | 1665 | ajv@6.12.6: 1666 | dependencies: 1667 | fast-deep-equal: 3.1.3 1668 | fast-json-stable-stringify: 2.1.0 1669 | json-schema-traverse: 0.4.1 1670 | uri-js: 4.4.1 1671 | 1672 | ansi-regex@5.0.1: {} 1673 | 1674 | ansi-styles@4.3.0: 1675 | dependencies: 1676 | color-convert: 2.0.1 1677 | 1678 | anymatch@3.1.3: 1679 | dependencies: 1680 | normalize-path: 3.0.0 1681 | picomatch: 2.3.1 1682 | 1683 | argparse@2.0.1: {} 1684 | 1685 | aria-query@5.3.2: {} 1686 | 1687 | array-union@2.1.0: {} 1688 | 1689 | axobject-query@4.1.0: {} 1690 | 1691 | balanced-match@1.0.2: {} 1692 | 1693 | binary-extensions@2.3.0: {} 1694 | 1695 | brace-expansion@1.1.11: 1696 | dependencies: 1697 | balanced-match: 1.0.2 1698 | concat-map: 0.0.1 1699 | 1700 | brace-expansion@2.0.1: 1701 | dependencies: 1702 | balanced-match: 1.0.2 1703 | 1704 | braces@3.0.3: 1705 | dependencies: 1706 | fill-range: 7.1.1 1707 | 1708 | buffer-crc32@1.0.0: {} 1709 | 1710 | callsites@3.1.0: {} 1711 | 1712 | chalk@4.1.2: 1713 | dependencies: 1714 | ansi-styles: 4.3.0 1715 | supports-color: 7.2.0 1716 | 1717 | chokidar@3.6.0: 1718 | dependencies: 1719 | anymatch: 3.1.3 1720 | braces: 3.0.3 1721 | glob-parent: 5.1.2 1722 | is-binary-path: 2.1.0 1723 | is-glob: 4.0.3 1724 | normalize-path: 3.0.0 1725 | readdirp: 3.6.0 1726 | optionalDependencies: 1727 | fsevents: 2.3.3 1728 | 1729 | code-red@1.0.4: 1730 | dependencies: 1731 | '@jridgewell/sourcemap-codec': 1.5.0 1732 | '@types/estree': 1.0.6 1733 | acorn: 8.14.0 1734 | estree-walker: 3.0.3 1735 | periscopic: 3.1.0 1736 | 1737 | color-convert@2.0.1: 1738 | dependencies: 1739 | color-name: 1.1.4 1740 | 1741 | color-name@1.1.4: {} 1742 | 1743 | concat-map@0.0.1: {} 1744 | 1745 | cookie@0.6.0: {} 1746 | 1747 | cross-spawn@7.0.6: 1748 | dependencies: 1749 | path-key: 3.1.1 1750 | shebang-command: 2.0.0 1751 | which: 2.0.2 1752 | 1753 | css-tree@2.3.1: 1754 | dependencies: 1755 | mdn-data: 2.0.30 1756 | source-map-js: 1.2.1 1757 | 1758 | cssesc@3.0.0: {} 1759 | 1760 | debug@4.3.7: 1761 | dependencies: 1762 | ms: 2.1.3 1763 | 1764 | deep-is@0.1.4: {} 1765 | 1766 | deepmerge@4.3.1: {} 1767 | 1768 | detect-indent@6.1.0: {} 1769 | 1770 | devalue@5.1.1: {} 1771 | 1772 | dir-glob@3.0.1: 1773 | dependencies: 1774 | path-type: 4.0.0 1775 | 1776 | doctrine@3.0.0: 1777 | dependencies: 1778 | esutils: 2.0.3 1779 | 1780 | es6-promise@3.3.1: {} 1781 | 1782 | esbuild@0.21.5: 1783 | optionalDependencies: 1784 | '@esbuild/aix-ppc64': 0.21.5 1785 | '@esbuild/android-arm': 0.21.5 1786 | '@esbuild/android-arm64': 0.21.5 1787 | '@esbuild/android-x64': 0.21.5 1788 | '@esbuild/darwin-arm64': 0.21.5 1789 | '@esbuild/darwin-x64': 0.21.5 1790 | '@esbuild/freebsd-arm64': 0.21.5 1791 | '@esbuild/freebsd-x64': 0.21.5 1792 | '@esbuild/linux-arm': 0.21.5 1793 | '@esbuild/linux-arm64': 0.21.5 1794 | '@esbuild/linux-ia32': 0.21.5 1795 | '@esbuild/linux-loong64': 0.21.5 1796 | '@esbuild/linux-mips64el': 0.21.5 1797 | '@esbuild/linux-ppc64': 0.21.5 1798 | '@esbuild/linux-riscv64': 0.21.5 1799 | '@esbuild/linux-s390x': 0.21.5 1800 | '@esbuild/linux-x64': 0.21.5 1801 | '@esbuild/netbsd-x64': 0.21.5 1802 | '@esbuild/openbsd-x64': 0.21.5 1803 | '@esbuild/sunos-x64': 0.21.5 1804 | '@esbuild/win32-arm64': 0.21.5 1805 | '@esbuild/win32-ia32': 0.21.5 1806 | '@esbuild/win32-x64': 0.21.5 1807 | 1808 | escape-string-regexp@4.0.0: {} 1809 | 1810 | eslint-compat-utils@0.5.1(eslint@8.57.1): 1811 | dependencies: 1812 | eslint: 8.57.1 1813 | semver: 7.6.3 1814 | 1815 | eslint-config-prettier@9.1.0(eslint@8.57.1): 1816 | dependencies: 1817 | eslint: 8.57.1 1818 | 1819 | eslint-plugin-svelte@2.46.0(eslint@8.57.1)(svelte@4.2.19): 1820 | dependencies: 1821 | '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) 1822 | '@jridgewell/sourcemap-codec': 1.5.0 1823 | eslint: 8.57.1 1824 | eslint-compat-utils: 0.5.1(eslint@8.57.1) 1825 | esutils: 2.0.3 1826 | known-css-properties: 0.35.0 1827 | postcss: 8.4.49 1828 | postcss-load-config: 3.1.4(postcss@8.4.49) 1829 | postcss-safe-parser: 6.0.0(postcss@8.4.49) 1830 | postcss-selector-parser: 6.1.2 1831 | semver: 7.6.3 1832 | svelte-eslint-parser: 0.43.0(svelte@4.2.19) 1833 | optionalDependencies: 1834 | svelte: 4.2.19 1835 | transitivePeerDependencies: 1836 | - ts-node 1837 | 1838 | eslint-scope@7.2.2: 1839 | dependencies: 1840 | esrecurse: 4.3.0 1841 | estraverse: 5.3.0 1842 | 1843 | eslint-visitor-keys@3.4.3: {} 1844 | 1845 | eslint@8.57.1: 1846 | dependencies: 1847 | '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) 1848 | '@eslint-community/regexpp': 4.12.1 1849 | '@eslint/eslintrc': 2.1.4 1850 | '@eslint/js': 8.57.1 1851 | '@humanwhocodes/config-array': 0.13.0 1852 | '@humanwhocodes/module-importer': 1.0.1 1853 | '@nodelib/fs.walk': 1.2.8 1854 | '@ungap/structured-clone': 1.2.0 1855 | ajv: 6.12.6 1856 | chalk: 4.1.2 1857 | cross-spawn: 7.0.6 1858 | debug: 4.3.7 1859 | doctrine: 3.0.0 1860 | escape-string-regexp: 4.0.0 1861 | eslint-scope: 7.2.2 1862 | eslint-visitor-keys: 3.4.3 1863 | espree: 9.6.1 1864 | esquery: 1.6.0 1865 | esutils: 2.0.3 1866 | fast-deep-equal: 3.1.3 1867 | file-entry-cache: 6.0.1 1868 | find-up: 5.0.0 1869 | glob-parent: 6.0.2 1870 | globals: 13.24.0 1871 | graphemer: 1.4.0 1872 | ignore: 5.3.2 1873 | imurmurhash: 0.1.4 1874 | is-glob: 4.0.3 1875 | is-path-inside: 3.0.3 1876 | js-yaml: 4.1.0 1877 | json-stable-stringify-without-jsonify: 1.0.1 1878 | levn: 0.4.1 1879 | lodash.merge: 4.6.2 1880 | minimatch: 3.1.2 1881 | natural-compare: 1.4.0 1882 | optionator: 0.9.4 1883 | strip-ansi: 6.0.1 1884 | text-table: 0.2.0 1885 | transitivePeerDependencies: 1886 | - supports-color 1887 | 1888 | esm-env@1.1.4: {} 1889 | 1890 | espree@9.6.1: 1891 | dependencies: 1892 | acorn: 8.14.0 1893 | acorn-jsx: 5.3.2(acorn@8.14.0) 1894 | eslint-visitor-keys: 3.4.3 1895 | 1896 | esquery@1.6.0: 1897 | dependencies: 1898 | estraverse: 5.3.0 1899 | 1900 | esrecurse@4.3.0: 1901 | dependencies: 1902 | estraverse: 5.3.0 1903 | 1904 | estraverse@5.3.0: {} 1905 | 1906 | estree-walker@3.0.3: 1907 | dependencies: 1908 | '@types/estree': 1.0.6 1909 | 1910 | esutils@2.0.3: {} 1911 | 1912 | fast-deep-equal@3.1.3: {} 1913 | 1914 | fast-glob@3.3.2: 1915 | dependencies: 1916 | '@nodelib/fs.stat': 2.0.5 1917 | '@nodelib/fs.walk': 1.2.8 1918 | glob-parent: 5.1.2 1919 | merge2: 1.4.1 1920 | micromatch: 4.0.8 1921 | 1922 | fast-json-stable-stringify@2.1.0: {} 1923 | 1924 | fast-levenshtein@2.0.6: {} 1925 | 1926 | fastq@1.17.1: 1927 | dependencies: 1928 | reusify: 1.0.4 1929 | 1930 | file-entry-cache@6.0.1: 1931 | dependencies: 1932 | flat-cache: 3.2.0 1933 | 1934 | fill-range@7.1.1: 1935 | dependencies: 1936 | to-regex-range: 5.0.1 1937 | 1938 | find-up@5.0.0: 1939 | dependencies: 1940 | locate-path: 6.0.0 1941 | path-exists: 4.0.0 1942 | 1943 | flat-cache@3.2.0: 1944 | dependencies: 1945 | flatted: 3.3.2 1946 | keyv: 4.5.4 1947 | rimraf: 3.0.2 1948 | 1949 | flatted@3.3.2: {} 1950 | 1951 | fs.realpath@1.0.0: {} 1952 | 1953 | fsevents@2.3.3: 1954 | optional: true 1955 | 1956 | glob-parent@5.1.2: 1957 | dependencies: 1958 | is-glob: 4.0.3 1959 | 1960 | glob-parent@6.0.2: 1961 | dependencies: 1962 | is-glob: 4.0.3 1963 | 1964 | glob@7.2.3: 1965 | dependencies: 1966 | fs.realpath: 1.0.0 1967 | inflight: 1.0.6 1968 | inherits: 2.0.4 1969 | minimatch: 3.1.2 1970 | once: 1.4.0 1971 | path-is-absolute: 1.0.1 1972 | 1973 | globals@13.24.0: 1974 | dependencies: 1975 | type-fest: 0.20.2 1976 | 1977 | globalyzer@0.1.0: {} 1978 | 1979 | globby@11.1.0: 1980 | dependencies: 1981 | array-union: 2.1.0 1982 | dir-glob: 3.0.1 1983 | fast-glob: 3.3.2 1984 | ignore: 5.3.2 1985 | merge2: 1.4.1 1986 | slash: 3.0.0 1987 | 1988 | globrex@0.1.2: {} 1989 | 1990 | graceful-fs@4.2.11: {} 1991 | 1992 | graphemer@1.4.0: {} 1993 | 1994 | has-flag@4.0.0: {} 1995 | 1996 | ignore@5.3.2: {} 1997 | 1998 | import-fresh@3.3.0: 1999 | dependencies: 2000 | parent-module: 1.0.1 2001 | resolve-from: 4.0.0 2002 | 2003 | import-meta-resolve@4.1.0: {} 2004 | 2005 | imurmurhash@0.1.4: {} 2006 | 2007 | inflight@1.0.6: 2008 | dependencies: 2009 | once: 1.4.0 2010 | wrappy: 1.0.2 2011 | 2012 | inherits@2.0.4: {} 2013 | 2014 | is-binary-path@2.1.0: 2015 | dependencies: 2016 | binary-extensions: 2.3.0 2017 | 2018 | is-extglob@2.1.1: {} 2019 | 2020 | is-glob@4.0.3: 2021 | dependencies: 2022 | is-extglob: 2.1.1 2023 | 2024 | is-number@7.0.0: {} 2025 | 2026 | is-path-inside@3.0.3: {} 2027 | 2028 | is-reference@3.0.3: 2029 | dependencies: 2030 | '@types/estree': 1.0.6 2031 | 2032 | isexe@2.0.0: {} 2033 | 2034 | jose@5.9.6: {} 2035 | 2036 | js-yaml@4.1.0: 2037 | dependencies: 2038 | argparse: 2.0.1 2039 | 2040 | json-buffer@3.0.1: {} 2041 | 2042 | json-schema-traverse@0.4.1: {} 2043 | 2044 | json-stable-stringify-without-jsonify@1.0.1: {} 2045 | 2046 | keyv@4.5.4: 2047 | dependencies: 2048 | json-buffer: 3.0.1 2049 | 2050 | kleur@4.1.5: {} 2051 | 2052 | known-css-properties@0.35.0: {} 2053 | 2054 | levn@0.4.1: 2055 | dependencies: 2056 | prelude-ls: 1.2.1 2057 | type-check: 0.4.0 2058 | 2059 | lilconfig@2.1.0: {} 2060 | 2061 | locate-character@3.0.0: {} 2062 | 2063 | locate-path@6.0.0: 2064 | dependencies: 2065 | p-locate: 5.0.0 2066 | 2067 | lodash.merge@4.6.2: {} 2068 | 2069 | magic-string@0.30.13: 2070 | dependencies: 2071 | '@jridgewell/sourcemap-codec': 1.5.0 2072 | 2073 | mdn-data@2.0.30: {} 2074 | 2075 | merge2@1.4.1: {} 2076 | 2077 | micromatch@4.0.8: 2078 | dependencies: 2079 | braces: 3.0.3 2080 | picomatch: 2.3.1 2081 | 2082 | min-indent@1.0.1: {} 2083 | 2084 | minimatch@3.1.2: 2085 | dependencies: 2086 | brace-expansion: 1.1.11 2087 | 2088 | minimatch@9.0.3: 2089 | dependencies: 2090 | brace-expansion: 2.0.1 2091 | 2092 | minimist@1.2.8: {} 2093 | 2094 | mkdirp@0.5.6: 2095 | dependencies: 2096 | minimist: 1.2.8 2097 | 2098 | mri@1.2.0: {} 2099 | 2100 | mrmime@2.0.0: {} 2101 | 2102 | ms@2.1.3: {} 2103 | 2104 | nanoid@3.3.7: {} 2105 | 2106 | natural-compare@1.4.0: {} 2107 | 2108 | normalize-path@3.0.0: {} 2109 | 2110 | oauth4webapi@3.1.3: {} 2111 | 2112 | once@1.4.0: 2113 | dependencies: 2114 | wrappy: 1.0.2 2115 | 2116 | optionator@0.9.4: 2117 | dependencies: 2118 | deep-is: 0.1.4 2119 | fast-levenshtein: 2.0.6 2120 | levn: 0.4.1 2121 | prelude-ls: 1.2.1 2122 | type-check: 0.4.0 2123 | word-wrap: 1.2.5 2124 | 2125 | p-limit@3.1.0: 2126 | dependencies: 2127 | yocto-queue: 0.1.0 2128 | 2129 | p-locate@5.0.0: 2130 | dependencies: 2131 | p-limit: 3.1.0 2132 | 2133 | parent-module@1.0.1: 2134 | dependencies: 2135 | callsites: 3.1.0 2136 | 2137 | path-exists@4.0.0: {} 2138 | 2139 | path-is-absolute@1.0.1: {} 2140 | 2141 | path-key@3.1.1: {} 2142 | 2143 | path-type@4.0.0: {} 2144 | 2145 | periscopic@3.1.0: 2146 | dependencies: 2147 | '@types/estree': 1.0.6 2148 | estree-walker: 3.0.3 2149 | is-reference: 3.0.3 2150 | 2151 | picocolors@1.1.1: {} 2152 | 2153 | picomatch@2.3.1: {} 2154 | 2155 | postcss-load-config@3.1.4(postcss@8.4.49): 2156 | dependencies: 2157 | lilconfig: 2.1.0 2158 | yaml: 1.10.2 2159 | optionalDependencies: 2160 | postcss: 8.4.49 2161 | 2162 | postcss-safe-parser@6.0.0(postcss@8.4.49): 2163 | dependencies: 2164 | postcss: 8.4.49 2165 | 2166 | postcss-scss@4.0.9(postcss@8.4.49): 2167 | dependencies: 2168 | postcss: 8.4.49 2169 | 2170 | postcss-selector-parser@6.1.2: 2171 | dependencies: 2172 | cssesc: 3.0.0 2173 | util-deprecate: 1.0.2 2174 | 2175 | postcss@8.4.49: 2176 | dependencies: 2177 | nanoid: 3.3.7 2178 | picocolors: 1.1.1 2179 | source-map-js: 1.2.1 2180 | 2181 | preact-render-to-string@6.5.11(preact@10.24.3): 2182 | dependencies: 2183 | preact: 10.24.3 2184 | 2185 | preact@10.24.3: {} 2186 | 2187 | prelude-ls@1.2.1: {} 2188 | 2189 | prettier-plugin-svelte@3.2.8(prettier@3.3.3)(svelte@4.2.19): 2190 | dependencies: 2191 | prettier: 3.3.3 2192 | svelte: 4.2.19 2193 | 2194 | prettier@3.3.3: {} 2195 | 2196 | punycode@2.3.1: {} 2197 | 2198 | queue-microtask@1.2.3: {} 2199 | 2200 | readdirp@3.6.0: 2201 | dependencies: 2202 | picomatch: 2.3.1 2203 | 2204 | resolve-from@4.0.0: {} 2205 | 2206 | reusify@1.0.4: {} 2207 | 2208 | rimraf@2.7.1: 2209 | dependencies: 2210 | glob: 7.2.3 2211 | 2212 | rimraf@3.0.2: 2213 | dependencies: 2214 | glob: 7.2.3 2215 | 2216 | rollup@4.27.3: 2217 | dependencies: 2218 | '@types/estree': 1.0.6 2219 | optionalDependencies: 2220 | '@rollup/rollup-android-arm-eabi': 4.27.3 2221 | '@rollup/rollup-android-arm64': 4.27.3 2222 | '@rollup/rollup-darwin-arm64': 4.27.3 2223 | '@rollup/rollup-darwin-x64': 4.27.3 2224 | '@rollup/rollup-freebsd-arm64': 4.27.3 2225 | '@rollup/rollup-freebsd-x64': 4.27.3 2226 | '@rollup/rollup-linux-arm-gnueabihf': 4.27.3 2227 | '@rollup/rollup-linux-arm-musleabihf': 4.27.3 2228 | '@rollup/rollup-linux-arm64-gnu': 4.27.3 2229 | '@rollup/rollup-linux-arm64-musl': 4.27.3 2230 | '@rollup/rollup-linux-powerpc64le-gnu': 4.27.3 2231 | '@rollup/rollup-linux-riscv64-gnu': 4.27.3 2232 | '@rollup/rollup-linux-s390x-gnu': 4.27.3 2233 | '@rollup/rollup-linux-x64-gnu': 4.27.3 2234 | '@rollup/rollup-linux-x64-musl': 4.27.3 2235 | '@rollup/rollup-win32-arm64-msvc': 4.27.3 2236 | '@rollup/rollup-win32-ia32-msvc': 4.27.3 2237 | '@rollup/rollup-win32-x64-msvc': 4.27.3 2238 | fsevents: 2.3.3 2239 | 2240 | run-parallel@1.2.0: 2241 | dependencies: 2242 | queue-microtask: 1.2.3 2243 | 2244 | sade@1.8.1: 2245 | dependencies: 2246 | mri: 1.2.0 2247 | 2248 | sander@0.5.1: 2249 | dependencies: 2250 | es6-promise: 3.3.1 2251 | graceful-fs: 4.2.11 2252 | mkdirp: 0.5.6 2253 | rimraf: 2.7.1 2254 | 2255 | semver@7.6.3: {} 2256 | 2257 | set-cookie-parser@2.7.1: {} 2258 | 2259 | shebang-command@2.0.0: 2260 | dependencies: 2261 | shebang-regex: 3.0.0 2262 | 2263 | shebang-regex@3.0.0: {} 2264 | 2265 | sirv@3.0.0: 2266 | dependencies: 2267 | '@polka/url': 1.0.0-next.28 2268 | mrmime: 2.0.0 2269 | totalist: 3.0.1 2270 | 2271 | slash@3.0.0: {} 2272 | 2273 | sorcery@0.11.1: 2274 | dependencies: 2275 | '@jridgewell/sourcemap-codec': 1.5.0 2276 | buffer-crc32: 1.0.0 2277 | minimist: 1.2.8 2278 | sander: 0.5.1 2279 | 2280 | source-map-js@1.2.1: {} 2281 | 2282 | strip-ansi@6.0.1: 2283 | dependencies: 2284 | ansi-regex: 5.0.1 2285 | 2286 | strip-indent@3.0.0: 2287 | dependencies: 2288 | min-indent: 1.0.1 2289 | 2290 | strip-json-comments@3.1.1: {} 2291 | 2292 | supports-color@7.2.0: 2293 | dependencies: 2294 | has-flag: 4.0.0 2295 | 2296 | svelte-check@3.8.6(postcss-load-config@3.1.4(postcss@8.4.49))(postcss@8.4.49)(svelte@4.2.19): 2297 | dependencies: 2298 | '@jridgewell/trace-mapping': 0.3.25 2299 | chokidar: 3.6.0 2300 | picocolors: 1.1.1 2301 | sade: 1.8.1 2302 | svelte: 4.2.19 2303 | svelte-preprocess: 5.1.4(postcss-load-config@3.1.4(postcss@8.4.49))(postcss@8.4.49)(svelte@4.2.19)(typescript@5.6.3) 2304 | typescript: 5.6.3 2305 | transitivePeerDependencies: 2306 | - '@babel/core' 2307 | - coffeescript 2308 | - less 2309 | - postcss 2310 | - postcss-load-config 2311 | - pug 2312 | - sass 2313 | - stylus 2314 | - sugarss 2315 | 2316 | svelte-eslint-parser@0.43.0(svelte@4.2.19): 2317 | dependencies: 2318 | eslint-scope: 7.2.2 2319 | eslint-visitor-keys: 3.4.3 2320 | espree: 9.6.1 2321 | postcss: 8.4.49 2322 | postcss-scss: 4.0.9(postcss@8.4.49) 2323 | optionalDependencies: 2324 | svelte: 4.2.19 2325 | 2326 | svelte-hmr@0.16.0(svelte@4.2.19): 2327 | dependencies: 2328 | svelte: 4.2.19 2329 | 2330 | svelte-preprocess@5.1.4(postcss-load-config@3.1.4(postcss@8.4.49))(postcss@8.4.49)(svelte@4.2.19)(typescript@5.6.3): 2331 | dependencies: 2332 | '@types/pug': 2.0.10 2333 | detect-indent: 6.1.0 2334 | magic-string: 0.30.13 2335 | sorcery: 0.11.1 2336 | strip-indent: 3.0.0 2337 | svelte: 4.2.19 2338 | optionalDependencies: 2339 | postcss: 8.4.49 2340 | postcss-load-config: 3.1.4(postcss@8.4.49) 2341 | typescript: 5.6.3 2342 | 2343 | svelte@4.2.19: 2344 | dependencies: 2345 | '@ampproject/remapping': 2.3.0 2346 | '@jridgewell/sourcemap-codec': 1.5.0 2347 | '@jridgewell/trace-mapping': 0.3.25 2348 | '@types/estree': 1.0.6 2349 | acorn: 8.14.0 2350 | aria-query: 5.3.2 2351 | axobject-query: 4.1.0 2352 | code-red: 1.0.4 2353 | css-tree: 2.3.1 2354 | estree-walker: 3.0.3 2355 | is-reference: 3.0.3 2356 | locate-character: 3.0.0 2357 | magic-string: 0.30.13 2358 | periscopic: 3.1.0 2359 | 2360 | text-table@0.2.0: {} 2361 | 2362 | tiny-glob@0.2.9: 2363 | dependencies: 2364 | globalyzer: 0.1.0 2365 | globrex: 0.1.2 2366 | 2367 | to-regex-range@5.0.1: 2368 | dependencies: 2369 | is-number: 7.0.0 2370 | 2371 | totalist@3.0.1: {} 2372 | 2373 | ts-api-utils@1.4.0(typescript@5.6.3): 2374 | dependencies: 2375 | typescript: 5.6.3 2376 | 2377 | tslib@2.8.1: {} 2378 | 2379 | type-check@0.4.0: 2380 | dependencies: 2381 | prelude-ls: 1.2.1 2382 | 2383 | type-fest@0.20.2: {} 2384 | 2385 | typescript@5.6.3: {} 2386 | 2387 | uri-js@4.4.1: 2388 | dependencies: 2389 | punycode: 2.3.1 2390 | 2391 | util-deprecate@1.0.2: {} 2392 | 2393 | vite@5.4.11: 2394 | dependencies: 2395 | esbuild: 0.21.5 2396 | postcss: 8.4.49 2397 | rollup: 4.27.3 2398 | optionalDependencies: 2399 | fsevents: 2.3.3 2400 | 2401 | vitefu@0.2.5(vite@5.4.11): 2402 | optionalDependencies: 2403 | vite: 5.4.11 2404 | 2405 | which@2.0.2: 2406 | dependencies: 2407 | isexe: 2.0.0 2408 | 2409 | word-wrap@1.2.5: {} 2410 | 2411 | wrappy@1.0.2: {} 2412 | 2413 | yaml@1.10.2: {} 2414 | 2415 | yocto-queue@0.1.0: {} 2416 | -------------------------------------------------------------------------------- /frontend/src/app.d.ts: -------------------------------------------------------------------------------- 1 | import '@auth/sveltekit'; 2 | 3 | // See https://kit.svelte.dev/docs/types#app 4 | // for information about these interfaces 5 | declare global { 6 | namespace App { 7 | // interface Error {} 8 | // interface Locals {} 9 | // interface PageData {} 10 | // interface PageState {} 11 | // interface Platform {} 12 | } 13 | } 14 | 15 | // Declare your framework library 16 | declare module '@auth/sveltekit' { 17 | /** 18 | * The shape of the user object returned in the OAuth providers' `profile` callback, 19 | * or the second parameter of the `session` callback, when using a database. 20 | */ 21 | interface User { 22 | pk: number; 23 | username: string; 24 | email: string; 25 | first_name: string; 26 | last_name: string; 27 | } 28 | /** 29 | * The shape of the account object returned in the OAuth providers' `account` callback, 30 | * Usually contains information about the provider being used, like OAuth tokens (`access_token`, etc). 31 | */ 32 | // interface Account {} 33 | 34 | /** 35 | * Returned by `useSession`, `auth`, contains information about the active session. 36 | */ 37 | interface Session { 38 | access_token: string; 39 | refresh_token: string; 40 | ref: number; 41 | iat: number; 42 | exp: number; 43 | jti: string; 44 | error?: 'RefreshAccessTokenError'; 45 | } 46 | } 47 | 48 | export {}; 49 | -------------------------------------------------------------------------------- /frontend/src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | %sveltekit.head% 8 | 9 | 10 |
15 | {#if $page.data.session}
16 | {#if $page.data.session.user?.image}
17 |
18 | {/if}
19 |
20 | Signed in as Signed in as {$page?.data?.session?.user?.username}
21 | {$page.data.session.user?.name ?? 'User'}
22 |
30 | You must be signed in to view this page 31 |
32 | {/if} 33 |38 | {JSON.stringify(provider, null, 4)} 39 |40 | {/if} 41 | {/each} 42 | 43 | 48 | -------------------------------------------------------------------------------- /frontend/src/routes/login/+page.ts: -------------------------------------------------------------------------------- 1 | export async function load({ fetch }) { 2 | const csrfToken = await fetch('auth/csrf') 3 | .then((r) => r.json()) 4 | .then((data) => data.csrfToken); 5 | const providers = await fetch('auth/providers').then((r) => r.json()); 6 | 7 | return { csrfToken, providers }; 8 | } 9 | -------------------------------------------------------------------------------- /frontend/src/routes/profile/+page.svelte: -------------------------------------------------------------------------------- 1 | 27 | 28 |
PK: {session?.user?.pk}
35 |Username: {session?.user?.username}
36 |Email: {session?.user?.email || 'Not provided'}
37 |38 | {response} 39 |40 |
Session:
31 |Session expiry: {new Date($page.data.session?.exp * 1000).toLocaleString()}
32 |Session issued: {new Date($page.data.session?.iat * 1000).toLocaleString()}
33 |Session reference: {new Date($page.data.session?.ref * 1000).toLocaleString()}
34 |35 | {JSON.stringify($page.data.session, null, 4)} 36 |37 | Access token: 38 |
39 | Access token expiry: {new Date( 40 | decodeJWT($page.data.session.access_token)?.payload?.exp * 1000 41 | ).toLocaleString()} 42 |
43 |44 | {JSON.stringify(decodeJWT($page.data.session.access_token), null, 4)} 45 |46 | Refresh token: 47 |
48 | Refresh token expiry: {new Date( 49 | decodeJWT($page.data.session.refresh_token)?.payload?.exp * 1000 50 | ).toLocaleString()} 51 |
52 |53 | {JSON.stringify(decodeJWT($page.data.session.refresh_token), null, 4)} 54 |55 | {:else} 56 |
58 | You must be signed in to view this page 59 |
60 | {/if} 61 |