mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
Compare commits
12 Commits
@auth/core
...
@auth/svel
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a6ac48314e | ||
|
|
f8675bc245 | ||
|
|
3d4842dcc9 | ||
|
|
7d7d1b2f80 | ||
|
|
9a4f3db7b0 | ||
|
|
6aad07a95c | ||
|
|
cfed5b976f | ||
|
|
d34108091f | ||
|
|
7bf79b89a8 | ||
|
|
4cd688703a | ||
|
|
57b176840e | ||
|
|
6298d955df |
@@ -4,11 +4,8 @@ import * as github from "@actions/github"
|
|||||||
// @ts-expect-error
|
// @ts-expect-error
|
||||||
import * as core from "@actions/core"
|
import * as core from "@actions/core"
|
||||||
import { readFileSync } from "node:fs"
|
import { readFileSync } from "node:fs"
|
||||||
import { join } from "node:path"
|
|
||||||
|
|
||||||
const addReproductionLabel = "incomplete"
|
const addReproductionLabel = "incomplete"
|
||||||
const __dirname =
|
|
||||||
"/home/runner/work/nextauthjs/next-auth/.github/actions/issue-validator"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @typedef {{
|
* @typedef {{
|
||||||
@@ -73,7 +70,7 @@ async function run() {
|
|||||||
}),
|
}),
|
||||||
client.issues.createComment({
|
client.issues.createComment({
|
||||||
...issueCommon,
|
...issueCommon,
|
||||||
body: readFileSync(join(__dirname, "repro.md"), "utf8"),
|
body: readFileSync("repro.md", "utf8"),
|
||||||
}),
|
}),
|
||||||
])
|
])
|
||||||
return core.info(
|
return core.info(
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
GITHUB_CLIENT_ID=
|
GITHUB_ID=
|
||||||
GITHUB_CLIENT_SECRET=
|
GITHUB_SECRET=
|
||||||
NEXTAUTH_SECRET=
|
# On UNIX systems you can use `openssl rand -hex 32` or
|
||||||
PUBLIC_NEXTAUTH_URL=http://localhost:5173
|
# https://generate-secret.vercel.app/32 to generate a secret.
|
||||||
|
AUTH_SECRET=
|
||||||
@@ -1,37 +1,23 @@
|
|||||||
{
|
{
|
||||||
"name": "sveltekit-nextauth",
|
"scripts": {
|
||||||
"private": true,
|
"dev": "vite dev",
|
||||||
"version": "0.0.1",
|
"build": "vite build",
|
||||||
"scripts": {
|
"preview": "vite preview",
|
||||||
"dev": "vite dev",
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
||||||
"build": "vite build",
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
||||||
"preview": "vite preview",
|
},
|
||||||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
"devDependencies": {
|
||||||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
|
"@sveltejs/adapter-auto": "next",
|
||||||
},
|
"@sveltejs/kit": "next",
|
||||||
"devDependencies": {
|
"svelte": "3.55.0",
|
||||||
"@fontsource/fira-mono": "^4.5.10",
|
"svelte-check": "2.10.2",
|
||||||
"@neoconfetti/svelte": "^1.0.0",
|
"typescript": "4.9.4",
|
||||||
"@sveltejs/adapter-auto": "next",
|
"vite": "4.0.1"
|
||||||
"@sveltejs/kit": "next",
|
},
|
||||||
"@types/cookie": "^0.5.1",
|
"dependencies": {
|
||||||
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
"cookie": "0.5.0",
|
||||||
"@typescript-eslint/parser": "^5.45.0",
|
"@auth/core": "workspace:*",
|
||||||
"eslint": "^8.28.0",
|
"@auth/sveltekit": "workspace:*"
|
||||||
"eslint-config-prettier": "^8.5.0",
|
},
|
||||||
"eslint-plugin-svelte3": "^4.0.0",
|
"type": "module"
|
||||||
"prettier": "^2.8.0",
|
|
||||||
"prettier-plugin-svelte": "^2.8.1",
|
|
||||||
"svelte": "^3.54.0",
|
|
||||||
"svelte-check": "^2.9.2",
|
|
||||||
"tslib": "^2.4.1",
|
|
||||||
"typescript": "^4.9.3",
|
|
||||||
"vite": "^4.0.0"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"cookie": "0.5.0",
|
|
||||||
"@auth/core": "workspace:*",
|
|
||||||
"@auth/sveltekit": "workspace:^"
|
|
||||||
},
|
|
||||||
"type": "module"
|
|
||||||
}
|
}
|
||||||
|
|||||||
33
apps/playground-sveltekit/src/app.d.ts
vendored
33
apps/playground-sveltekit/src/app.d.ts
vendored
@@ -1,32 +1 @@
|
|||||||
/// <reference types="@sveltejs/kit" />
|
/// <reference types="@auth/sveltekit" />
|
||||||
/// <reference types="next-auth-sveltekit" />
|
|
||||||
import type {
|
|
||||||
User as NextAuthUser,
|
|
||||||
Session as NextAuthSession,
|
|
||||||
} from "next-auth"
|
|
||||||
|
|
||||||
// optionally extend the `user`
|
|
||||||
interface User extends NextAuthUser {
|
|
||||||
// add custom fields here
|
|
||||||
}
|
|
||||||
|
|
||||||
interface AppSession extends NextAuthSession {
|
|
||||||
user: User
|
|
||||||
}
|
|
||||||
|
|
||||||
// See https://kit.svelte.dev/docs/typescript
|
|
||||||
// for information about these interfaces
|
|
||||||
declare global {
|
|
||||||
declare namespace App {
|
|
||||||
interface Locals {
|
|
||||||
// session: AppSession
|
|
||||||
getSession: () => Promise<AppSession>
|
|
||||||
}
|
|
||||||
|
|
||||||
interface Platform {}
|
|
||||||
|
|
||||||
interface Session extends AppSession {}
|
|
||||||
|
|
||||||
interface Stuff {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,12 +1,7 @@
|
|||||||
import type { LayoutServerLoad } from "./$types"
|
import type { LayoutServerLoad } from "./$types"
|
||||||
|
|
||||||
export const load: LayoutServerLoad = (event) => {
|
export const load: LayoutServerLoad = async (event) => {
|
||||||
console.log("layout server load", event.locals.getSession)
|
|
||||||
let session
|
|
||||||
if (event.locals.getSession) {
|
|
||||||
session = event.locals.getSession()
|
|
||||||
}
|
|
||||||
return {
|
return {
|
||||||
session,
|
session: await event.locals.getSession(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
<header>
|
<header>
|
||||||
<div class="signedInStatus">
|
<div class="signedInStatus">
|
||||||
<p class="nojs-show loaded">
|
<p class="nojs-show loaded">
|
||||||
{#if Object.keys($page.data.session || {}).length}
|
{#if $page.data.session}
|
||||||
{#if $page.data.session.user.image}
|
{#if $page.data.session.user?.image}
|
||||||
<span
|
<span
|
||||||
style="background-image: url('{$page.data.session.user.image}')"
|
style="background-image: url('{$page.data.session.user.image}')"
|
||||||
class="avatar"
|
class="avatar"
|
||||||
@@ -16,8 +16,8 @@
|
|||||||
<span class="signedInText">
|
<span class="signedInText">
|
||||||
<small>Signed in as</small><br />
|
<small>Signed in as</small><br />
|
||||||
<strong
|
<strong
|
||||||
>{$page.data.session.user.email ||
|
>{$page.data.session.user?.email ??
|
||||||
$page.data.session.user.name}</strong
|
$page.data.session.user?.name}</strong
|
||||||
>
|
>
|
||||||
</span>
|
</span>
|
||||||
<a href="/auth/signout" class="button">Sign out</a>
|
<a href="/auth/signout" class="button">Sign out</a>
|
||||||
|
|||||||
@@ -3,15 +3,16 @@
|
|||||||
import { page } from "$app/stores"
|
import { page } from "$app/stores"
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<h1>SvelteKit + NextAuth.js Example</h1>
|
<h1>SvelteKit Auth Example</h1>
|
||||||
<p>
|
<p>
|
||||||
This is an example site to demonstrate how to use <a
|
This is an example site to demonstrate how to use <a
|
||||||
href="https://kit.svelte.dev/">SvelteKit</a
|
href="https://kit.svelte.dev/">SvelteKit</a
|
||||||
>
|
>
|
||||||
with <a href="https://next-auth.js.org">NextAuth.js</a> for authentication.
|
with <a href="https://sveltekit.authjs.dev">SvelteKit Auth</a> for
|
||||||
|
authentication.
|
||||||
|
|
||||||
{#if Object.keys($page.data.session || {}).length}
|
{#if $page.data.session}
|
||||||
{#if $page.data.session.user.image}
|
{#if $page.data.session.user?.image}
|
||||||
<span
|
<span
|
||||||
style="background-image: url('{$page.data.session.user.image}')"
|
style="background-image: url('{$page.data.session.user.image}')"
|
||||||
class="avatar"
|
class="avatar"
|
||||||
@@ -20,15 +21,13 @@
|
|||||||
<span class="signedInText">
|
<span class="signedInText">
|
||||||
<small>Signed in as</small><br />
|
<small>Signed in as</small><br />
|
||||||
<strong
|
<strong
|
||||||
>{$page.data.session.user.email || $page.data.session.user.name}</strong
|
>{$page.data.session.user?.email ??
|
||||||
|
$page.data.session.user?.name}</strong
|
||||||
>
|
>
|
||||||
</span>
|
</span>
|
||||||
<button on:click={() => signOut()} class="button">Sign out</button>
|
<button on:click={() => signOut()} class="button">Sign out</button>
|
||||||
{:else}
|
{:else}
|
||||||
<span class="notSignedInText">You are not signed in</span>
|
<span class="notSignedInText">You are not signed in</span>
|
||||||
<button on:click={() => signIn("github")}>Sign In with GitHub</button>
|
<button on:click={() => signIn("github")}>Sign In with GitHub</button>
|
||||||
<button on:click={() => signIn("credentials", { redirect: false })}
|
|
||||||
>Sign In credentials</button
|
|
||||||
>
|
|
||||||
{/if}
|
{/if}
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -7,4 +7,4 @@
|
|||||||
This is a protected content. You can access this content because you are
|
This is a protected content. You can access this content because you are
|
||||||
signed in.
|
signed in.
|
||||||
</p>
|
</p>
|
||||||
<p>Session expiry: {$page.data.session.expires}</p>
|
<p>Session expiry: {$page.data.session?.expires}</p>
|
||||||
|
|||||||
@@ -14,4 +14,4 @@
|
|||||||
//
|
//
|
||||||
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
||||||
// from the referenced tsconfig.json - TypeScript does not merge them in
|
// from the referenced tsconfig.json - TypeScript does not merge them in
|
||||||
}
|
}
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
import { sveltekit } from '@sveltejs/kit/vite';
|
import { sveltekit } from "@sveltejs/kit/vite"
|
||||||
|
|
||||||
/** @type {import('vite').UserConfig} */
|
/** @type {import('vite').UserConfig} */
|
||||||
const config = {
|
const config = {
|
||||||
plugins: [sveltekit()]
|
plugins: [sveltekit()],
|
||||||
};
|
}
|
||||||
|
|
||||||
export default config;
|
export default config
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@auth/core",
|
"name": "@auth/core",
|
||||||
"version": "0.1.2",
|
"version": "0.1.3",
|
||||||
"description": "Authentication for the web.",
|
"description": "Authentication for the web.",
|
||||||
"homepage": "https://authjs.dev",
|
"homepage": "https://authjs.dev",
|
||||||
"repository": "https://github.com/nextauthjs/next-auth.git",
|
"repository": "https://github.com/nextauthjs/next-auth.git",
|
||||||
@@ -72,4 +72,4 @@
|
|||||||
"postcss": "8.4.19",
|
"postcss": "8.4.19",
|
||||||
"postcss-nested": "6.0.0"
|
"postcss-nested": "6.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { Account, Awaitable, User } from "."
|
import type { Account, Awaitable, User } from "./index.js"
|
||||||
|
|
||||||
export interface AdapterUser extends User {
|
export interface AdapterUser extends User {
|
||||||
id: string
|
id: string
|
||||||
|
|||||||
@@ -1,20 +1,20 @@
|
|||||||
import { init } from "./lib/init"
|
import { init } from "./lib/init.js"
|
||||||
import { assertConfig } from "./lib/assert"
|
import { assertConfig } from "./lib/assert.js"
|
||||||
import { SessionStore } from "./lib/cookie"
|
import { SessionStore } from "./lib/cookie.js"
|
||||||
import { toInternalRequest, toResponse } from "./lib/web"
|
import { toInternalRequest, toResponse } from "./lib/web.js"
|
||||||
import renderPage from "./lib/pages"
|
import renderPage from "./lib/pages/index.js"
|
||||||
import * as routes from "./lib/routes"
|
import * as routes from "./lib/routes/index.js"
|
||||||
import logger, { setLogger } from "./lib/utils/logger"
|
import logger, { setLogger } from "./lib/utils/logger.js"
|
||||||
|
|
||||||
import type { ErrorType } from "./lib/pages/error"
|
import type { ErrorType } from "./lib/pages/error.js"
|
||||||
import type {
|
import type {
|
||||||
AuthOptions,
|
AuthOptions,
|
||||||
RequestInternal,
|
RequestInternal,
|
||||||
ResponseInternal,
|
ResponseInternal,
|
||||||
} from "./lib/types"
|
} from "./lib/types.js"
|
||||||
import { UntrustedHost } from "./lib/errors"
|
import { UntrustedHost } from "./lib/errors.js"
|
||||||
|
|
||||||
export * from "./lib/types"
|
export * from "./lib/types.js"
|
||||||
|
|
||||||
const configErrorMessage =
|
const configErrorMessage =
|
||||||
"There is a problem with the server configuration. Check the server logs for more information."
|
"There is a problem with the server configuration. Check the server logs for more information."
|
||||||
@@ -35,7 +35,7 @@ async function AuthHandlerInternal<
|
|||||||
assertionResult.forEach(logger.warn)
|
assertionResult.forEach(logger.warn)
|
||||||
} else if (assertionResult instanceof Error) {
|
} else if (assertionResult instanceof Error) {
|
||||||
// Bail out early if there's an error in the user config
|
// Bail out early if there's an error in the user config
|
||||||
logger.error(assertionResult.code, assertionResult)
|
logger.error((assertionResult as any).code, assertionResult)
|
||||||
|
|
||||||
const htmlPages = ["signin", "signout", "error", "verify-request"]
|
const htmlPages = ["signin", "signout", "error", "verify-request"]
|
||||||
if (!htmlPages.includes(req.action) || req.method !== "GET") {
|
if (!htmlPages.includes(req.action) || req.method !== "GET") {
|
||||||
|
|||||||
@@ -1,10 +1,15 @@
|
|||||||
import { EncryptJWT, jwtDecrypt } from "jose"
|
import { EncryptJWT, jwtDecrypt } from "jose"
|
||||||
import hkdf from "@panva/hkdf"
|
import { hkdf } from "@panva/hkdf"
|
||||||
import { SessionStore } from "../lib/cookie"
|
import { SessionStore } from "../lib/cookie.js"
|
||||||
import type { JWT, JWTDecodeParams, JWTEncodeParams, JWTOptions } from "./types"
|
import type {
|
||||||
import type { LoggerInstance } from ".."
|
JWT,
|
||||||
|
JWTDecodeParams,
|
||||||
|
JWTEncodeParams,
|
||||||
|
JWTOptions,
|
||||||
|
} from "./types.js"
|
||||||
|
import type { LoggerInstance } from "../index.js"
|
||||||
|
|
||||||
export * from "./types"
|
export * from "./types.js"
|
||||||
|
|
||||||
const DEFAULT_MAX_AGE = 30 * 24 * 60 * 60 // 30 days
|
const DEFAULT_MAX_AGE = 30 * 24 * 60 * 60 // 30 days
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { Awaitable } from ".."
|
import type { Awaitable } from "../index.js"
|
||||||
|
|
||||||
export interface DefaultJWT extends Record<string, unknown> {
|
export interface DefaultJWT extends Record<string, unknown> {
|
||||||
name?: string | null
|
name?: string | null
|
||||||
|
|||||||
@@ -7,11 +7,11 @@ import {
|
|||||||
MissingAuthorize,
|
MissingAuthorize,
|
||||||
MissingSecret,
|
MissingSecret,
|
||||||
UnsupportedStrategy,
|
UnsupportedStrategy,
|
||||||
} from "./errors"
|
} from "./errors.js"
|
||||||
import { defaultCookies } from "./cookie"
|
import { defaultCookies } from "./cookie.js"
|
||||||
|
|
||||||
import type { AuthOptions, RequestInternal } from ".."
|
import type { AuthOptions, RequestInternal } from "../index.js"
|
||||||
import type { WarningCode } from "./utils/logger"
|
import type { WarningCode } from "./utils/logger.js"
|
||||||
|
|
||||||
type ConfigError =
|
type ConfigError =
|
||||||
| MissingAdapter
|
| MissingAdapter
|
||||||
@@ -56,7 +56,7 @@ export function assertConfig(params: {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!options.secret) {
|
if (!options.secret) {
|
||||||
return new MissingSecret("Please define a `secret` in production.")
|
return new MissingSecret("Please define a `secret`.")
|
||||||
}
|
}
|
||||||
|
|
||||||
// req.query isn't defined when asserting `unstable_getServerSession` for example
|
// req.query isn't defined when asserting `unstable_getServerSession` for example
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import { AccountNotLinkedError } from "./errors"
|
import { AccountNotLinkedError } from "./errors.js"
|
||||||
import { fromDate } from "./utils/date"
|
import { fromDate } from "./utils/date.js"
|
||||||
|
|
||||||
import type { Account, InternalOptions, User } from ".."
|
import type { Account, InternalOptions, User } from "../index.js"
|
||||||
import type { AdapterSession, AdapterUser } from "../adapters"
|
import type { AdapterSession, AdapterUser } from "../adapters.js"
|
||||||
import type { JWT } from "../jwt"
|
import type { JWT } from "../jwt/index.js"
|
||||||
import type { OAuthConfig } from "../providers"
|
import type { OAuthConfig } from "../providers/index.js"
|
||||||
import type { SessionToken } from "./cookie"
|
import type { SessionToken } from "./cookie.js"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function handles the complex flow of signing users in, and either creating,
|
* This function handles the complex flow of signing users in, and either creating,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { InternalOptions } from ".."
|
import type { InternalOptions } from "../index.js"
|
||||||
|
|
||||||
interface CreateCallbackUrlParams {
|
interface CreateCallbackUrlParams {
|
||||||
options: InternalOptions
|
options: InternalOptions
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import type {
|
|||||||
CookiesOptions,
|
CookiesOptions,
|
||||||
LoggerInstance,
|
LoggerInstance,
|
||||||
SessionStrategy,
|
SessionStrategy,
|
||||||
} from ".."
|
} from "../index.js"
|
||||||
|
|
||||||
// Uncomment to recalculate the estimated size
|
// Uncomment to recalculate the estimated size
|
||||||
// of an empty session cookie
|
// of an empty session cookie
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { createHash, randomString } from "./web"
|
import { createHash, randomString } from "./web.js"
|
||||||
import type { InternalOptions } from "./types"
|
import type { InternalOptions } from "./types.js"
|
||||||
|
|
||||||
interface CreateCSRFTokenParams {
|
interface CreateCSRFTokenParams {
|
||||||
options: InternalOptions
|
options: InternalOptions
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { CallbacksOptions } from ".."
|
import type { CallbacksOptions } from "../index.js"
|
||||||
|
|
||||||
export const defaultCallbacks: CallbacksOptions = {
|
export const defaultCallbacks: CallbacksOptions = {
|
||||||
signIn() {
|
signIn() {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import type { AdapterUser } from "../../adapters"
|
import type { AdapterUser } from "../../adapters.js"
|
||||||
import type { InternalOptions } from "../.."
|
import type { InternalOptions } from "../../index.js"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Query the database for a user by email address.
|
* Query the database for a user by email address.
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { randomString, createHash } from "../web"
|
import { randomString, createHash } from "../web.js"
|
||||||
import type { InternalOptions } from "../.."
|
import type { InternalOptions } from "../../index.js"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Starts an e-mail login flow, by generating a token,
|
* Starts an e-mail login flow, by generating a token,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { EventCallbacks, LoggerInstance } from "./types"
|
import type { EventCallbacks, LoggerInstance } from "./types.js"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Same as the default `Error`, but it is JSON serializable.
|
* Same as the default `Error`, but it is JSON serializable.
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
import { adapterErrorHandler, eventsErrorHandler } from "./errors"
|
import { adapterErrorHandler, eventsErrorHandler } from "./errors.js"
|
||||||
import * as jwt from "../jwt"
|
import * as jwt from "../jwt/index.js"
|
||||||
import { createCallbackUrl } from "./callback-url"
|
import { createCallbackUrl } from "./callback-url.js"
|
||||||
import * as cookie from "./cookie"
|
import * as cookie from "./cookie.js"
|
||||||
import { createCSRFToken } from "./csrf-token"
|
import { createCSRFToken } from "./csrf-token.js"
|
||||||
import { defaultCallbacks } from "./default-callbacks"
|
import { defaultCallbacks } from "./default-callbacks.js"
|
||||||
import parseProviders from "./providers"
|
import parseProviders from "./providers.js"
|
||||||
import logger from "./utils/logger"
|
import logger from "./utils/logger.js"
|
||||||
import parseUrl from "./utils/parse-url"
|
import parseUrl from "./utils/parse-url.js"
|
||||||
|
|
||||||
import type { AuthOptions, InternalOptions, RequestInternal } from ".."
|
import type { AuthOptions, InternalOptions, RequestInternal } from "../index.js"
|
||||||
|
|
||||||
interface InitParams {
|
interface InitParams {
|
||||||
url: URL
|
url: URL
|
||||||
|
|||||||
@@ -5,8 +5,8 @@ import type {
|
|||||||
InternalOptions,
|
InternalOptions,
|
||||||
RequestInternal,
|
RequestInternal,
|
||||||
ResponseInternal,
|
ResponseInternal,
|
||||||
} from "../.."
|
} from "../../index.js"
|
||||||
import type { Cookie } from "../cookie"
|
import type { Cookie } from "../cookie.js"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Generates an authorization/request token URL.
|
* Generates an authorization/request token URL.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { OAuthCallbackError } from "../errors"
|
import { OAuthCallbackError } from "../errors.js"
|
||||||
import { useNonce } from "./nonce-handler"
|
import { useNonce } from "./nonce-handler.js"
|
||||||
import { usePKCECodeVerifier } from "./pkce-handler"
|
import { usePKCECodeVerifier } from "./pkce-handler.js"
|
||||||
import { useState } from "./state-handler"
|
import { useState } from "./state-handler.js"
|
||||||
import * as o from "oauth4webapi"
|
import * as o from "oauth4webapi"
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
@@ -10,9 +10,9 @@ import type {
|
|||||||
Profile,
|
Profile,
|
||||||
RequestInternal,
|
RequestInternal,
|
||||||
TokenSet,
|
TokenSet,
|
||||||
} from "../.."
|
} from "../../index.js"
|
||||||
import type { OAuthConfigInternal } from "../../providers"
|
import type { OAuthConfigInternal } from "../../providers/index.js"
|
||||||
import type { Cookie } from "../cookie"
|
import type { Cookie } from "../cookie.js"
|
||||||
|
|
||||||
export async function handleOAuthCallback(params: {
|
export async function handleOAuthCallback(params: {
|
||||||
options: InternalOptions<"oauth">
|
options: InternalOptions<"oauth">
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import * as o from "oauth4webapi"
|
import * as o from "oauth4webapi"
|
||||||
import * as jwt from "../../jwt"
|
import * as jwt from "../../jwt/index.js"
|
||||||
|
|
||||||
import type { InternalOptions } from "../.."
|
import type { InternalOptions } from "../../index.js"
|
||||||
import type { Cookie } from "../cookie"
|
import type { Cookie } from "../cookie.js"
|
||||||
|
|
||||||
const NONCE_MAX_AGE = 60 * 15 // 15 minutes in seconds
|
const NONCE_MAX_AGE = 60 * 15 // 15 minutes in seconds
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import * as o from "oauth4webapi"
|
import * as o from "oauth4webapi"
|
||||||
import * as jwt from "../../jwt"
|
import * as jwt from "../../jwt/index.js"
|
||||||
|
|
||||||
import type { InternalOptions } from "../.."
|
import type { InternalOptions } from "../../index.js"
|
||||||
import type { Cookie } from "../cookie"
|
import type { Cookie } from "../cookie.js"
|
||||||
|
|
||||||
const PKCE_CODE_CHALLENGE_METHOD = "S256"
|
const PKCE_CODE_CHALLENGE_METHOD = "S256"
|
||||||
const PKCE_MAX_AGE = 60 * 15 // 15 minutes in seconds
|
const PKCE_MAX_AGE = 60 * 15 // 15 minutes in seconds
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import type { InternalOptions } from "../.."
|
import type { InternalOptions } from "../../index.js"
|
||||||
import type { Cookie } from "../cookie"
|
import type { Cookie } from "../cookie.js"
|
||||||
import * as o from "oauth4webapi"
|
import * as o from "oauth4webapi"
|
||||||
|
|
||||||
const STATE_MAX_AGE = 60 * 15 // 15 minutes in seconds
|
const STATE_MAX_AGE = 60 * 15 // 15 minutes in seconds
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { Theme } from "../.."
|
import type { Theme } from "../../index.js"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The following errors are passed as error query parameters to the default or overridden error page.
|
* The following errors are passed as error query parameters to the default or overridden error page.
|
||||||
|
|||||||
@@ -1,13 +1,17 @@
|
|||||||
import renderToString from "preact-render-to-string"
|
import { renderToString } from "preact-render-to-string"
|
||||||
import css from "../styles"
|
import css from "../styles/index.js"
|
||||||
import ErrorPage from "./error"
|
import ErrorPage from "./error.js"
|
||||||
import SigninPage from "./signin"
|
import SigninPage from "./signin.js"
|
||||||
import SignoutPage from "./signout"
|
import SignoutPage from "./signout.js"
|
||||||
import VerifyRequestPage from "./verify-request"
|
import VerifyRequestPage from "./verify-request.js"
|
||||||
|
|
||||||
import type { InternalOptions, RequestInternal, ResponseInternal } from "../.."
|
import type {
|
||||||
import type { Cookie } from "../cookie"
|
InternalOptions,
|
||||||
import type { ErrorType } from "./error"
|
RequestInternal,
|
||||||
|
ResponseInternal,
|
||||||
|
} from "../../index.js"
|
||||||
|
import type { Cookie } from "../cookie.js"
|
||||||
|
import type { ErrorType } from "./error.js"
|
||||||
|
|
||||||
type RenderPageParams = {
|
type RenderPageParams = {
|
||||||
query?: RequestInternal["query"]
|
query?: RequestInternal["query"]
|
||||||
|
|||||||
@@ -1,5 +1,4 @@
|
|||||||
import type { InternalProvider, Theme } from "../.."
|
import type { InternalProvider, Theme } from "../../index.js"
|
||||||
import type { CSSProperties } from "react"
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The following errors are passed as error query parameters to the default or overridden sign-in page.
|
* The following errors are passed as error query parameters to the default or overridden sign-in page.
|
||||||
@@ -92,15 +91,12 @@ export default function SigninPage(props: SignInServerPageParams) {
|
|||||||
<button
|
<button
|
||||||
type="submit"
|
type="submit"
|
||||||
className="button"
|
className="button"
|
||||||
style={
|
style={{
|
||||||
// eslint-disable-next-line
|
"--provider-bg": provider.style?.bg ?? "",
|
||||||
{
|
"--provider-dark-bg": provider.style?.bgDark ?? "",
|
||||||
"--provider-bg": provider.style?.bg ?? "",
|
"--provider-color": provider.style?.text ?? "",
|
||||||
"--provider-dark-bg": provider.style?.bgDark ?? "",
|
"--provider-dark-color": provider.style?.textDark ?? "",
|
||||||
"--provider-color": provider.style?.text ?? "",
|
}}
|
||||||
"--provider-dark-color": provider.style?.textDark ?? "",
|
|
||||||
} as CSSProperties
|
|
||||||
}
|
|
||||||
>
|
>
|
||||||
{provider.style?.logo && (
|
{provider.style?.logo && (
|
||||||
<img
|
<img
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { Theme } from "../.."
|
import type { Theme } from "../../index.js"
|
||||||
|
|
||||||
export interface SignoutProps {
|
export interface SignoutProps {
|
||||||
url: URL
|
url: URL
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { Theme } from "../.."
|
import type { Theme } from "../../index.js"
|
||||||
|
|
||||||
interface VerifyRequestPageProps {
|
interface VerifyRequestPageProps {
|
||||||
url: URL
|
url: URL
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
import { merge } from "./utils/merge"
|
import { merge } from "./utils/merge.js"
|
||||||
|
|
||||||
import type { InternalProvider } from ".."
|
import type { InternalProvider } from "../index.js"
|
||||||
import type {
|
import type {
|
||||||
OAuthConfig,
|
OAuthConfig,
|
||||||
OAuthConfigInternal,
|
OAuthConfigInternal,
|
||||||
OAuthEndpointType,
|
OAuthEndpointType,
|
||||||
OAuthUserConfig,
|
OAuthUserConfig,
|
||||||
Provider,
|
Provider,
|
||||||
} from "../providers"
|
} from "../providers/index.js"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds `signinUrl` and `callbackUrl` to each provider
|
* Adds `signinUrl` and `callbackUrl` to each provider
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
import callbackHandler from "../callback-handler"
|
import callbackHandler from "../callback-handler.js"
|
||||||
import getAdapterUserFromEmail from "../email/getUserFromEmail"
|
import getAdapterUserFromEmail from "../email/getUserFromEmail.js"
|
||||||
import { handleOAuthCallback } from "../oauth/callback"
|
import { handleOAuthCallback } from "../oauth/callback.js"
|
||||||
import { createHash } from "../web"
|
import { createHash } from "../web.js"
|
||||||
|
|
||||||
import type { RequestInternal, ResponseInternal, User } from "../.."
|
import type { RequestInternal, ResponseInternal, User } from "../../index.js"
|
||||||
import type { AdapterSession } from "../../adapters"
|
import type { AdapterSession } from "../../adapters.js"
|
||||||
import type { Cookie, SessionStore } from "../cookie"
|
import type { Cookie, SessionStore } from "../cookie.js"
|
||||||
import type { InternalOptions } from "../types"
|
import type { InternalOptions } from "../types.js"
|
||||||
|
|
||||||
/** Handle callbacks from login services */
|
/** Handle callbacks from login services */
|
||||||
export async function callback(params: {
|
export async function callback(params: {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
export { callback } from "./callback"
|
export { callback } from "./callback.js"
|
||||||
export { providers } from "./providers"
|
export { providers } from "./providers.js"
|
||||||
export { session } from "./session"
|
export { session } from "./session.js"
|
||||||
export { signin } from "./signin"
|
export { signin } from "./signin.js"
|
||||||
export { signout } from "./signout"
|
export { signout } from "./signout.js"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { InternalProvider, ResponseInternal } from "../.."
|
import type { InternalProvider, ResponseInternal } from "../../index.js"
|
||||||
|
|
||||||
export interface PublicProvider {
|
export interface PublicProvider {
|
||||||
id: string
|
id: string
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import { fromDate } from "../utils/date"
|
import { fromDate } from "../utils/date.js"
|
||||||
|
|
||||||
import type { InternalOptions, ResponseInternal, Session } from "../.."
|
import type { InternalOptions, ResponseInternal, Session } from "../../index.js"
|
||||||
import type { Adapter } from "../../adapters"
|
import type { Adapter } from "../../adapters.js"
|
||||||
import type { SessionStore } from "../cookie"
|
import type { SessionStore } from "../cookie.js"
|
||||||
|
|
||||||
interface SessionParams {
|
interface SessionParams {
|
||||||
options: InternalOptions
|
options: InternalOptions
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
import getAdapterUserFromEmail from "../email/getUserFromEmail"
|
import getAdapterUserFromEmail from "../email/getUserFromEmail.js"
|
||||||
import emailSignin from "../email/signin"
|
import emailSignin from "../email/signin.js"
|
||||||
import { getAuthorizationUrl } from "../oauth/authorization-url"
|
import { getAuthorizationUrl } from "../oauth/authorization-url.js"
|
||||||
|
|
||||||
import type {
|
import type {
|
||||||
Account,
|
Account,
|
||||||
InternalOptions,
|
InternalOptions,
|
||||||
RequestInternal,
|
RequestInternal,
|
||||||
ResponseInternal,
|
ResponseInternal,
|
||||||
} from "../.."
|
} from "../../index.js"
|
||||||
|
|
||||||
/** Handle requests to /api/auth/signin */
|
/** Handle requests to /api/auth/signin */
|
||||||
export async function signin(params: {
|
export async function signin(params: {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import type { InternalOptions, ResponseInternal } from "../.."
|
import type { InternalOptions, ResponseInternal } from "../../index.js"
|
||||||
import type { Adapter } from "../../adapters"
|
import type { Adapter } from "../../adapters.js"
|
||||||
import type { SessionStore } from "../cookie"
|
import type { SessionStore } from "../cookie.js"
|
||||||
|
|
||||||
/** Handle requests to /api/auth/signout */
|
/** Handle requests to /api/auth/signout */
|
||||||
export async function signout(params: {
|
export async function signout(params: {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import type { CookieSerializeOptions } from "cookie"
|
import type { CookieSerializeOptions } from "cookie"
|
||||||
import type { Adapter, AdapterUser } from "../adapters"
|
import type { Adapter, AdapterUser } from "../adapters.js"
|
||||||
import type {
|
import type {
|
||||||
CredentialInput,
|
CredentialInput,
|
||||||
CredentialsConfig,
|
CredentialsConfig,
|
||||||
@@ -7,16 +7,15 @@ import type {
|
|||||||
OAuthConfigInternal,
|
OAuthConfigInternal,
|
||||||
Provider,
|
Provider,
|
||||||
ProviderType,
|
ProviderType,
|
||||||
} from "../providers"
|
} from "../providers/index.js"
|
||||||
import type {
|
import type {
|
||||||
OAuth2TokenEndpointResponse,
|
OAuth2TokenEndpointResponse,
|
||||||
OpenIDTokenEndpointResponse,
|
OpenIDTokenEndpointResponse,
|
||||||
} from "oauth4webapi"
|
} from "oauth4webapi"
|
||||||
import type { JWT, JWTOptions } from "../jwt"
|
import type { JWT, JWTOptions } from "../jwt/types.js"
|
||||||
import type { Cookie } from "./cookie"
|
import type { Cookie } from "./cookie.js"
|
||||||
import type { LoggerInstance } from "./utils/logger"
|
import type { LoggerInstance } from "./utils/logger.js"
|
||||||
|
|
||||||
/** @internal */
|
|
||||||
export type Awaitable<T> = T | PromiseLike<T>
|
export type Awaitable<T> = T | PromiseLike<T>
|
||||||
|
|
||||||
export type { LoggerInstance }
|
export type { LoggerInstance }
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { UnknownError } from "../errors"
|
import { UnknownError } from "../errors.js"
|
||||||
|
|
||||||
/** Makes sure that error is always serializable */
|
/** Makes sure that error is always serializable */
|
||||||
function formatError(o: unknown): unknown {
|
function formatError(o: unknown): unknown {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import { parse as parseCookie, serialize } from "cookie"
|
import { parse as parseCookie, serialize } from "cookie"
|
||||||
import type { RequestInternal, ResponseInternal } from ".."
|
import type { RequestInternal, ResponseInternal } from "../index.js"
|
||||||
import { UnknownAction } from "./errors"
|
import { UnknownAction } from "./errors.js"
|
||||||
import type { AuthAction } from "./types"
|
import type { AuthAction } from "./types.js"
|
||||||
|
|
||||||
async function getBody(req: Request): Promise<Record<string, any> | undefined> {
|
async function getBody(req: Request): Promise<Record<string, any> | undefined> {
|
||||||
if (!("body" in req) || !req.body || req.method !== "POST") return
|
if (!("body" in req) || !req.body || req.method !== "POST") return
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface UserData {
|
export interface UserData {
|
||||||
id: number
|
id: number
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { OAuthConfig, OAuthUserConfig } from "."
|
import { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* See more at:
|
* See more at:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
interface AtlassianProfile extends Record<string, any> {
|
interface AtlassianProfile extends Record<string, any> {
|
||||||
account_id: string
|
account_id: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface Auth0Profile extends Record<string, any> {
|
export interface Auth0Profile extends Record<string, any> {
|
||||||
sub: string
|
sub: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface AuthentikProfile extends Record<string, any> {
|
export interface AuthentikProfile extends Record<string, any> {
|
||||||
iss: string
|
iss: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface AzureB2CProfile extends Record<string, any> {
|
export interface AzureB2CProfile extends Record<string, any> {
|
||||||
exp: number
|
exp: number
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface AzureADProfile extends Record<string, any> {
|
export interface AzureADProfile extends Record<string, any> {
|
||||||
sub: string
|
sub: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface BattleNetProfile extends Record<string, any> {
|
export interface BattleNetProfile extends Record<string, any> {
|
||||||
sub: string
|
sub: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface BoxyHQSAMLProfile extends Record<string, any> {
|
export interface BoxyHQSAMLProfile extends Record<string, any> {
|
||||||
id: string
|
id: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface CognitoProfile extends Record<string, any> {
|
export interface CognitoProfile extends Record<string, any> {
|
||||||
sub: string
|
sub: string
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import type { CommonProviderOptions } from "."
|
import type { CommonProviderOptions } from "./index.js"
|
||||||
import type { Awaitable, RequestInternal, User } from ".."
|
import type { Awaitable, RequestInternal, User } from "../index.js"
|
||||||
|
|
||||||
export interface CredentialInput {
|
export interface CredentialInput {
|
||||||
label?: string
|
label?: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface DiscordProfile extends Record<string, any> {
|
export interface DiscordProfile extends Record<string, any> {
|
||||||
accent_color: number
|
accent_color: number
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import { createTransport } from "nodemailer"
|
import { createTransport } from "nodemailer"
|
||||||
|
|
||||||
import type { CommonProviderOptions } from "."
|
import type { CommonProviderOptions } from "./index.js"
|
||||||
import type { Options as SMTPTransportOptions } from "nodemailer/lib/smtp-transport"
|
import type { Options as SMTPTransportOptions } from "nodemailer/lib/smtp-transport"
|
||||||
import type { Awaitable, Theme } from ".."
|
import type { Awaitable, Theme } from "../index.js"
|
||||||
|
|
||||||
export interface SendVerificationRequestParams {
|
export interface SendVerificationRequestParams {
|
||||||
identifier: string
|
identifier: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface EVEOnlineProfile extends Record<string, any> {
|
export interface EVEOnlineProfile extends Record<string, any> {
|
||||||
CharacterID: number
|
CharacterID: number
|
||||||
@@ -17,7 +17,8 @@ export default function EVEOnline<P extends EVEOnlineProfile>(
|
|||||||
id: "eveonline",
|
id: "eveonline",
|
||||||
name: "EVE Online",
|
name: "EVE Online",
|
||||||
type: "oauth",
|
type: "oauth",
|
||||||
authorization: "https://login.eveonline.com/v2/oauth/authorize?scope=publicData",
|
authorization:
|
||||||
|
"https://login.eveonline.com/v2/oauth/authorize?scope=publicData",
|
||||||
token: "https://login.eveonline.com/v2/oauth/token",
|
token: "https://login.eveonline.com/v2/oauth/token",
|
||||||
userinfo: "https://login.eveonline.com/oauth/verify",
|
userinfo: "https://login.eveonline.com/oauth/verify",
|
||||||
profile(profile) {
|
profile(profile) {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
interface FacebookPictureData {
|
interface FacebookPictureData {
|
||||||
url: string
|
url: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
/** @see https://docs.github.com/en/rest/users/users#get-the-authenticated-user */
|
/** @see https://docs.github.com/en/rest/users/users#get-the-authenticated-user */
|
||||||
export interface GithubProfile extends Record<string, any> {
|
export interface GithubProfile extends Record<string, any> {
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface GitLabProfile extends Record<string, any> {
|
export interface GitLabProfile extends Record<string, any> {
|
||||||
id: number
|
id: number
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface GoogleProfile extends Record<string, any> {
|
export interface GoogleProfile extends Record<string, any> {
|
||||||
aud: string
|
aud: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
interface HubSpotProfile extends Record<string, any> {
|
interface HubSpotProfile extends Record<string, any> {
|
||||||
// https://legacydocs.hubspot.com/docs/methods/oauth2/get-access-token-information
|
// https://legacydocs.hubspot.com/docs/methods/oauth2/get-access-token-information
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
import type { OAuthConfig, OAuthProvider, OAuthProviderType } from "./oauth"
|
import type { OAuthConfig, OAuthProvider, OAuthProviderType } from "./oauth.js"
|
||||||
import type { EmailConfig, EmailProvider, EmailProviderType } from "./email"
|
import type { EmailConfig, EmailProvider, EmailProviderType } from "./email.js"
|
||||||
import type {
|
import type {
|
||||||
CredentialsConfig,
|
CredentialsConfig,
|
||||||
CredentialsProvider,
|
CredentialsProvider,
|
||||||
CredentialsProviderType,
|
CredentialsProviderType,
|
||||||
} from "./credentials"
|
} from "./credentials.js"
|
||||||
|
|
||||||
export * from "./credentials"
|
export * from "./credentials.js"
|
||||||
export * from "./email"
|
export * from "./email.js"
|
||||||
export * from "./oauth"
|
export * from "./oauth.js"
|
||||||
|
|
||||||
export type ProviderType = "oidc" | "oauth" | "email" | "credentials"
|
export type ProviderType = "oidc" | "oauth" | "email" | "credentials"
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export type DateTime = string
|
export type DateTime = string
|
||||||
export type Gender = "female" | "male"
|
export type Gender = "female" | "male"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface KeycloakProfile extends Record<string, any> {
|
export interface KeycloakProfile extends Record<string, any> {
|
||||||
exp: number
|
exp: number
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface LineProfile extends Record<string, any> {
|
export interface LineProfile extends Record<string, any> {
|
||||||
iss: string
|
iss: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
interface Identifier {
|
interface Identifier {
|
||||||
identifier: string
|
identifier: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
/** https://developers.naver.com/docs/login/profile/profile.md */
|
/** https://developers.naver.com/docs/login/profile/profile.md */
|
||||||
export interface NaverProfile extends Record<string, any> {
|
export interface NaverProfile extends Record<string, any> {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import type { CommonProviderOptions } from "../providers"
|
import type { CommonProviderOptions } from "../providers/index.js"
|
||||||
import type { Profile, TokenSet, User, Awaitable } from ".."
|
import type { Profile, TokenSet, User, Awaitable } from "../index.js"
|
||||||
import type { Client } from "oauth4webapi"
|
import type { Client } from "oauth4webapi"
|
||||||
|
|
||||||
// TODO:
|
// TODO:
|
||||||
@@ -9,7 +9,7 @@ type IssuerMetadata = any
|
|||||||
type OAuthCallbackChecks = any
|
type OAuthCallbackChecks = any
|
||||||
type OpenIDCallbackChecks = any
|
type OpenIDCallbackChecks = any
|
||||||
|
|
||||||
export type { OAuthProviderType } from "./oauth-types"
|
export type { OAuthProviderType } from "./oauth-types.js"
|
||||||
|
|
||||||
type ChecksType = "pkce" | "state" | "none" | "nonce"
|
type ChecksType = "pkce" | "state" | "none" | "nonce"
|
||||||
|
|
||||||
@@ -96,6 +96,17 @@ export interface OAuthProviderButtonStyles {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export interface OAuth2Config<P> extends CommonProviderOptions, PartialIssuer {
|
export interface OAuth2Config<P> extends CommonProviderOptions, PartialIssuer {
|
||||||
|
/**
|
||||||
|
* Identifies the provider when you want to sign in to
|
||||||
|
* a specific provider.
|
||||||
|
* @example
|
||||||
|
* ```js
|
||||||
|
* signIn('github') // "github" is the provider ID
|
||||||
|
* ```
|
||||||
|
*/
|
||||||
|
id: string
|
||||||
|
/** The name of the provider. shown on the default sign in page. */
|
||||||
|
name: string
|
||||||
/**
|
/**
|
||||||
* OpenID Connect (OIDC) compliant providers can configure
|
* OpenID Connect (OIDC) compliant providers can configure
|
||||||
* this instead of `authorize`/`token`/`userinfo` options
|
* this instead of `authorize`/`token`/`userinfo` options
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface OktaProfile extends Record<string, any> {
|
export interface OktaProfile extends Record<string, any> {
|
||||||
iss: string
|
iss: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface OsuUserCompact {
|
export interface OsuUserCompact {
|
||||||
avatar_url: string
|
avatar_url: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface PatreonProfile extends Record<string, any> {
|
export interface PatreonProfile extends Record<string, any> {
|
||||||
sub: string
|
sub: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import { OAuthConfig, OAuthUserConfig } from "."
|
import { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface PinterestProfile extends Record<string, any> {
|
export interface PinterestProfile extends Record<string, any> {
|
||||||
account_type: "BUSINESS" | "PINNER"
|
account_type: "BUSINESS" | "PINNER"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface PipedriveProfile extends Record<string, any> {
|
export interface PipedriveProfile extends Record<string, any> {
|
||||||
success: boolean
|
success: boolean
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface SalesforceProfile extends Record<string, any> {
|
export interface SalesforceProfile extends Record<string, any> {
|
||||||
sub: string
|
sub: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface SlackProfile extends Record<string, any> {
|
export interface SlackProfile extends Record<string, any> {
|
||||||
ok: boolean
|
ok: boolean
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface SpotifyImage {
|
export interface SpotifyImage {
|
||||||
url: string
|
url: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface StravaProfile extends Record<string, any> {
|
export interface StravaProfile extends Record<string, any> {
|
||||||
id: string // this is really a number
|
id: string // this is really a number
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see https://developer.todoist.com/sync/v9/#user
|
* @see https://developer.todoist.com/sync/v9/#user
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface TraktUser extends Record<string, any> {
|
export interface TraktUser extends Record<string, any> {
|
||||||
username: string
|
username: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface TwitchProfile extends Record<string, any> {
|
export interface TwitchProfile extends Record<string, any> {
|
||||||
sub: string
|
sub: string
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
// TODO: move OAuth 1.0 support or remove it?
|
// TODO: move OAuth 1.0 support or remove it?
|
||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface TwitterLegacyProfile {
|
export interface TwitterLegacyProfile {
|
||||||
id: number
|
id: number
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface UnitedEffectsProfile extends Record<string, any> {
|
export interface UnitedEffectsProfile extends Record<string, any> {
|
||||||
sub: string
|
sub: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface VkProfile {
|
export interface VkProfile {
|
||||||
// https://dev.vk.com/reference/objects/user
|
// https://dev.vk.com/reference/objects/user
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export type WikimediaGroup =
|
export type WikimediaGroup =
|
||||||
| "*"
|
| "*"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface WorkOSProfile extends Record<string, any> {
|
export interface WorkOSProfile extends Record<string, any> {
|
||||||
object: string
|
object: string
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OIDCConfig, OAuthUserConfig } from "."
|
import type { OIDCConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface ZitadelProfile extends Record<string, any> {
|
export interface ZitadelProfile extends Record<string, any> {
|
||||||
amr: string // Authentication Method References as defined in RFC8176
|
amr: string // Authentication Method References as defined in RFC8176
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import type { OAuthConfig, OAuthUserConfig } from "."
|
import type { OAuthConfig, OAuthUserConfig } from "./index.js"
|
||||||
|
|
||||||
export interface ZoomProfile extends Record<string, any> {
|
export interface ZoomProfile extends Record<string, any> {
|
||||||
id: string
|
id: string
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"jsx": "react-jsx",
|
"jsx": "react-jsx",
|
||||||
|
"jsxImportSource": "preact",
|
||||||
"lib": [
|
"lib": [
|
||||||
"dom",
|
"dom",
|
||||||
"dom.iterable",
|
"dom.iterable",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@auth/sveltekit",
|
"name": "@auth/sveltekit",
|
||||||
"version": "0.1.2",
|
"version": "0.1.4",
|
||||||
"description": "Authentication for SvelteKit.",
|
"description": "Authentication for SvelteKit.",
|
||||||
"homepage": "https://sveltekit.authjs.dev",
|
"homepage": "https://sveltekit.authjs.dev",
|
||||||
"repository": "https://github.com/nextauthjs/next-auth.git",
|
"repository": "https://github.com/nextauthjs/next-auth.git",
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "svelte-package -w",
|
"dev": "svelte-package -w",
|
||||||
"clean": "rm -rf client.* index.* package",
|
"clean": "rm -rf client.* index.* package",
|
||||||
"build": "pnpm clean && svelte-package && node ./scripts/postbuild.js && rm -rf package",
|
"build": "pnpm clean && pnpm check && svelte-package && node ./scripts/postbuild.js && rm -rf package",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
||||||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
||||||
@@ -46,6 +46,10 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@auth/core": "workspace:*"
|
"@auth/core": "workspace:*"
|
||||||
},
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"svelte": "^3.54.0",
|
||||||
|
"svelte-kit": "^1.0.0"
|
||||||
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "./index.d.ts",
|
"types": "./index.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
@@ -64,4 +68,4 @@
|
|||||||
},
|
},
|
||||||
"./package.json": "./package.json"
|
"./package.json": "./package.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
20
packages/frameworks-sveltekit/src/app.d.ts
vendored
20
packages/frameworks-sveltekit/src/app.d.ts
vendored
@@ -1,20 +0,0 @@
|
|||||||
// eslint-disable-next-line @typescript-eslint/triple-slash-reference
|
|
||||||
/// <reference types="@sveltejs/kit" />
|
|
||||||
|
|
||||||
// See https://kit.svelte.dev/docs/types#app
|
|
||||||
// for information about these interfaces
|
|
||||||
// and what to do when importing types
|
|
||||||
declare namespace App {
|
|
||||||
// interface Error {}
|
|
||||||
interface Locals {
|
|
||||||
getSession: () => Promise<unknown>
|
|
||||||
}
|
|
||||||
// interface PageData {}
|
|
||||||
// interface Platform {}
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module "$env/static/private" {
|
|
||||||
export const AUTH_SECRET: string
|
|
||||||
export const AUTH_TRUST_HOST: string
|
|
||||||
export const VERCEL: string
|
|
||||||
}
|
|
||||||
@@ -1,12 +1,21 @@
|
|||||||
import { AUTH_SECRET, AUTH_TRUST_HOST, VERCEL } from "$env/static/private"
|
/// <reference types="@sveltejs/kit" />
|
||||||
import { dev } from "$app/environment"
|
import { dev } from "$app/environment"
|
||||||
|
import { env } from "$env/dynamic/private"
|
||||||
|
import { AUTH_SECRET } from "$env/static/private"
|
||||||
|
import {
|
||||||
|
AuthHandler,
|
||||||
|
type AuthAction,
|
||||||
|
type AuthOptions,
|
||||||
|
type Session,
|
||||||
|
} from "@auth/core"
|
||||||
|
import type { Handle } from "@sveltejs/kit"
|
||||||
|
|
||||||
import { AuthHandler, type AuthOptions, type AuthAction } from "@auth/core"
|
export type GetSessionResult = Promise<Session | null>
|
||||||
|
|
||||||
export async function getServerSession(
|
export async function getSession(
|
||||||
req: Request,
|
req: Request,
|
||||||
options: AuthOptions
|
options: AuthOptions
|
||||||
): Promise<unknown> {
|
): GetSessionResult {
|
||||||
options.secret ??= AUTH_SECRET
|
options.secret ??= AUTH_SECRET
|
||||||
options.trustHost ??= true
|
options.trustHost ??= true
|
||||||
|
|
||||||
@@ -21,15 +30,13 @@ export async function getServerSession(
|
|||||||
const data = await response.json()
|
const data = await response.json()
|
||||||
|
|
||||||
if (!data || !Object.keys(data).length) return null
|
if (!data || !Object.keys(data).length) return null
|
||||||
|
if (status === 200) return data
|
||||||
if (status === 200) {
|
|
||||||
return data
|
|
||||||
}
|
|
||||||
throw new Error(data.message)
|
throw new Error(data.message)
|
||||||
}
|
}
|
||||||
|
|
||||||
interface SvelteKitAuthOptions extends AuthOptions {
|
export interface SvelteKitAuthOptions extends AuthOptions {
|
||||||
/**
|
/**
|
||||||
|
* Defines the base path for the auth routes.
|
||||||
* @default '/auth'
|
* @default '/auth'
|
||||||
*/
|
*/
|
||||||
prefix?: string
|
prefix?: string
|
||||||
@@ -47,25 +54,56 @@ const actions: AuthAction[] = [
|
|||||||
"_log",
|
"_log",
|
||||||
]
|
]
|
||||||
|
|
||||||
/** The main entry point to @auth/sveltekit */
|
function SvelteKitAuthHandler(
|
||||||
function SvelteKitAuth({ prefix = "/auth", ...options }: SvelteKitAuthOptions) {
|
prefix: string,
|
||||||
options.secret ??= AUTH_SECRET
|
authOptions: AuthOptions
|
||||||
options.trustHost ??= !!(AUTH_TRUST_HOST ?? VERCEL ?? dev)
|
): Handle {
|
||||||
|
return ({ event, resolve }) => {
|
||||||
|
const { url, request } = event
|
||||||
|
|
||||||
return (({ event, resolve }) => {
|
event.locals.getSession ??= () => getSession(request, authOptions)
|
||||||
const [action] = event.url.pathname.slice(prefix.length + 1).split("/")
|
|
||||||
const isAuth = actions.includes(action as AuthAction)
|
|
||||||
|
|
||||||
if (!event.locals.getSession)
|
const [action] = url.pathname.slice(prefix.length + 1).split("/")
|
||||||
event.locals.getSession = async () =>
|
if (
|
||||||
getServerSession(event.request, options)
|
actions.includes(action as AuthAction) &&
|
||||||
|
url.pathname.startsWith(prefix + "/")
|
||||||
if (!event.url.pathname.startsWith(prefix + "/") || !isAuth) {
|
) {
|
||||||
return resolve(event)
|
return AuthHandler(request, authOptions)
|
||||||
}
|
}
|
||||||
|
|
||||||
return AuthHandler(event.request, options)
|
return resolve(event)
|
||||||
}) satisfies Handle
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default SvelteKitAuth
|
/**
|
||||||
|
* The main entry point to `@auth/sveltekit`
|
||||||
|
* @see https://sveltekit.authjs.dev
|
||||||
|
*/
|
||||||
|
export default function SvelteKitAuth(options: SvelteKitAuthOptions): Handle {
|
||||||
|
const { prefix = "/auth", ...authOptions } = options
|
||||||
|
authOptions.secret ??= AUTH_SECRET
|
||||||
|
authOptions.trustHost ??= !!(env.AUTH_TRUST_HOST ?? env.VERCEL ?? dev)
|
||||||
|
|
||||||
|
return SvelteKitAuthHandler(prefix, authOptions)
|
||||||
|
}
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
||||||
|
namespace App {
|
||||||
|
interface Locals {
|
||||||
|
getSession: () => GetSessionResult
|
||||||
|
}
|
||||||
|
interface PageData {
|
||||||
|
session: Session | null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "$env/dynamic/private" {
|
||||||
|
export const AUTH_TRUST_HOST: string
|
||||||
|
export const VERCEL: string
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module "$env/static/private" {
|
||||||
|
export const AUTH_SECRET: string
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
// "extends": "./.svelte-kit/tsconfig.json",
|
"extends": "./.svelte-kit/tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"checkJs": true,
|
"checkJs": true,
|
||||||
@@ -8,12 +8,11 @@
|
|||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"strict": true,
|
"strict": true
|
||||||
"moduleResolution": "node"
|
|
||||||
},
|
},
|
||||||
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
|
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
|
||||||
//
|
//
|
||||||
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
||||||
// from the referenced tsconfig.json - TypeScript does not merge them in
|
// from the referenced tsconfig.json - TypeScript does not merge them in
|
||||||
"exclude": ["scripts", "*.js", ".svelte-kit"]
|
"exclude": ["scripts", "*.js", "../node_modules/**", "./[!ambient.d.ts]**"]
|
||||||
}
|
}
|
||||||
|
|||||||
237
pnpm-lock.yaml
generated
237
pnpm-lock.yaml
generated
@@ -101,46 +101,24 @@ importers:
|
|||||||
apps/playground-sveltekit:
|
apps/playground-sveltekit:
|
||||||
specifiers:
|
specifiers:
|
||||||
'@auth/core': workspace:*
|
'@auth/core': workspace:*
|
||||||
'@auth/sveltekit': workspace:^
|
'@auth/sveltekit': workspace:*
|
||||||
'@fontsource/fira-mono': ^4.5.10
|
|
||||||
'@neoconfetti/svelte': ^1.0.0
|
|
||||||
'@sveltejs/adapter-auto': next
|
'@sveltejs/adapter-auto': next
|
||||||
'@sveltejs/kit': next
|
'@sveltejs/kit': next
|
||||||
'@types/cookie': ^0.5.1
|
|
||||||
'@typescript-eslint/eslint-plugin': ^5.45.0
|
|
||||||
'@typescript-eslint/parser': ^5.45.0
|
|
||||||
cookie: 0.5.0
|
cookie: 0.5.0
|
||||||
eslint: ^8.28.0
|
svelte: 3.55.0
|
||||||
eslint-config-prettier: ^8.5.0
|
svelte-check: 2.10.2
|
||||||
eslint-plugin-svelte3: ^4.0.0
|
typescript: 4.9.4
|
||||||
prettier: ^2.8.0
|
vite: 4.0.1
|
||||||
prettier-plugin-svelte: ^2.8.1
|
|
||||||
svelte: ^3.54.0
|
|
||||||
svelte-check: ^2.9.2
|
|
||||||
tslib: ^2.4.1
|
|
||||||
typescript: ^4.9.3
|
|
||||||
vite: ^4.0.0
|
|
||||||
dependencies:
|
dependencies:
|
||||||
'@auth/core': link:../../packages/core
|
'@auth/core': link:../../packages/core
|
||||||
'@auth/sveltekit': link:../../packages/frameworks-sveltekit
|
'@auth/sveltekit': link:../../packages/frameworks-sveltekit
|
||||||
cookie: 0.5.0
|
cookie: 0.5.0
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@fontsource/fira-mono': 4.5.10
|
'@sveltejs/adapter-auto': 1.0.0-next.91_oogoraclbppcquiitsbqrelvd4
|
||||||
'@neoconfetti/svelte': 1.0.0
|
'@sveltejs/kit': 1.0.0-next.587_svelte@3.55.0+vite@4.0.1
|
||||||
'@sveltejs/adapter-auto': 1.0.0-next.90
|
svelte: 3.55.0
|
||||||
'@sveltejs/kit': 1.0.0-next.587_svelte@3.54.0+vite@4.0.1
|
svelte-check: 2.10.2_svelte@3.55.0
|
||||||
'@types/cookie': 0.5.1
|
typescript: 4.9.4
|
||||||
'@typescript-eslint/eslint-plugin': 5.45.1_tdm6ms4ntwhlpozn7kjqrhum74
|
|
||||||
'@typescript-eslint/parser': 5.45.1_s5ps7njkmjlaqajutnox5ntcla
|
|
||||||
eslint: 8.29.0
|
|
||||||
eslint-config-prettier: 8.5.0_eslint@8.29.0
|
|
||||||
eslint-plugin-svelte3: 4.0.0_2aagxyyd66x6iymg5nfckajqjq
|
|
||||||
prettier: 2.8.0
|
|
||||||
prettier-plugin-svelte: 2.8.1_kaioqtfwjumrsfopsgfoca65re
|
|
||||||
svelte: 3.54.0
|
|
||||||
svelte-check: 2.10.1_svelte@3.54.0
|
|
||||||
tslib: 2.4.1
|
|
||||||
typescript: 4.9.3
|
|
||||||
vite: 4.0.1
|
vite: 4.0.1
|
||||||
|
|
||||||
docs:
|
docs:
|
||||||
@@ -543,7 +521,7 @@ importers:
|
|||||||
'@auth/core': link:../core
|
'@auth/core': link:../core
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@playwright/test': 1.28.1
|
'@playwright/test': 1.28.1
|
||||||
'@sveltejs/adapter-auto': 1.0.0-next.90
|
'@sveltejs/adapter-auto': 1.0.0-next.91_oogoraclbppcquiitsbqrelvd4
|
||||||
'@sveltejs/kit': 1.0.0-next.587_svelte@3.54.0+vite@4.0.1
|
'@sveltejs/kit': 1.0.0-next.587_svelte@3.54.0+vite@4.0.1
|
||||||
'@sveltejs/package': 1.0.0-next.6_gf4dcx76vtk2o62ixxeqx7chra
|
'@sveltejs/package': 1.0.0-next.6_gf4dcx76vtk2o62ixxeqx7chra
|
||||||
'@typescript-eslint/eslint-plugin': 5.45.1_tdm6ms4ntwhlpozn7kjqrhum74
|
'@typescript-eslint/eslint-plugin': 5.45.1_tdm6ms4ntwhlpozn7kjqrhum74
|
||||||
@@ -5800,7 +5778,7 @@ packages:
|
|||||||
infima: 0.2.0-alpha.42
|
infima: 0.2.0-alpha.42
|
||||||
lodash: 4.17.21
|
lodash: 4.17.21
|
||||||
nprogress: 0.2.0
|
nprogress: 0.2.0
|
||||||
postcss: 8.4.19
|
postcss: 8.4.20
|
||||||
prism-react-renderer: 1.3.5_react@18.2.0
|
prism-react-renderer: 1.3.5_react@18.2.0
|
||||||
prismjs: 1.28.0
|
prismjs: 1.28.0
|
||||||
react: 18.2.0
|
react: 18.2.0
|
||||||
@@ -6794,10 +6772,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-CJW8vxt6bJaBeco2VnlJjmCmAkrrtIdf0GGKvpAB4J5gw8Gi0rHb+qsgKp6LsyS5W6ALPLawLs7phZmw02dvLw==}
|
resolution: {integrity: sha512-CJW8vxt6bJaBeco2VnlJjmCmAkrrtIdf0GGKvpAB4J5gw8Gi0rHb+qsgKp6LsyS5W6ALPLawLs7phZmw02dvLw==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@fontsource/fira-mono/4.5.10:
|
|
||||||
resolution: {integrity: sha512-bxUnRP8xptGRo8YXeY073DSpfK74XpSb0ZyRNpHV9WvLnJ7TwPOjZll8hTMin7zLC6iOp59pDZ8EQDj1gzgAQQ==}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@gar/promisify/1.1.3:
|
/@gar/promisify/1.1.3:
|
||||||
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
|
resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
|
||||||
dev: true
|
dev: true
|
||||||
@@ -7670,10 +7644,6 @@ packages:
|
|||||||
'@jridgewell/trace-mapping': 0.3.17
|
'@jridgewell/trace-mapping': 0.3.17
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@jridgewell/sourcemap-codec/1.4.13:
|
|
||||||
resolution: {integrity: sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w==}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@jridgewell/sourcemap-codec/1.4.14:
|
/@jridgewell/sourcemap-codec/1.4.14:
|
||||||
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
|
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
|
||||||
|
|
||||||
@@ -7681,7 +7651,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==}
|
resolution: {integrity: sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@jridgewell/resolve-uri': 3.0.7
|
'@jridgewell/resolve-uri': 3.0.7
|
||||||
'@jridgewell/sourcemap-codec': 1.4.13
|
'@jridgewell/sourcemap-codec': 1.4.14
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@jridgewell/trace-mapping/0.3.17:
|
/@jridgewell/trace-mapping/0.3.17:
|
||||||
@@ -7897,10 +7867,6 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/@neoconfetti/svelte/1.0.0:
|
|
||||||
resolution: {integrity: sha512-SmksyaJAdSlMa9cTidVSIqYo1qti+WTsviNDwgjNVm+KQ3DRP2Df9umDIzC4vCcpEYY+chQe0i2IKnLw03AT8Q==}
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/@next/env/13.0.6:
|
/@next/env/13.0.6:
|
||||||
resolution: {integrity: sha512-yceT6DCHKqPRS1cAm8DHvDvK74DLIkDQdm5iV+GnIts8h0QbdHvkUIkdOvQoOODgpr6018skbmSQp12z5OWIQQ==}
|
resolution: {integrity: sha512-yceT6DCHKqPRS1cAm8DHvDvK74DLIkDQdm5iV+GnIts8h0QbdHvkUIkdOvQoOODgpr6018skbmSQp12z5OWIQQ==}
|
||||||
|
|
||||||
@@ -8297,9 +8263,12 @@ packages:
|
|||||||
- encoding
|
- encoding
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
/@sveltejs/adapter-auto/1.0.0-next.90:
|
/@sveltejs/adapter-auto/1.0.0-next.91_oogoraclbppcquiitsbqrelvd4:
|
||||||
resolution: {integrity: sha512-qxH46Oqqn40998wTmnbffONI0HcW/kiZ3OIjZoysjONne+LU4uEsG425MZ2RHDxmR04zxhsdjCAsn6B4du8D7w==}
|
resolution: {integrity: sha512-U57tQdzTfFINim8tzZSARC9ztWPzwOoHwNOpGdb2o6XrD0mEQwU9DsII7dBblvzg+xCnmd0pw7PDtXz5c5t96w==}
|
||||||
|
peerDependencies:
|
||||||
|
'@sveltejs/kit': ^1.0.0-next.587
|
||||||
dependencies:
|
dependencies:
|
||||||
|
'@sveltejs/kit': 1.0.0-next.587_svelte@3.54.0+vite@4.0.1
|
||||||
import-meta-resolve: 2.2.0
|
import-meta-resolve: 2.2.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
@@ -8331,6 +8300,34 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@sveltejs/kit/1.0.0-next.587_svelte@3.55.0+vite@4.0.1:
|
||||||
|
resolution: {integrity: sha512-F8zYXd7URcq57sGfrBRWTLtfj6JKkhNhwM4M8w4hNnJsJlZawPUvpybOSlIP87Z8URO8iCmyigQHxAYYzedrOg==}
|
||||||
|
engines: {node: '>=16.14'}
|
||||||
|
hasBin: true
|
||||||
|
requiresBuild: true
|
||||||
|
peerDependencies:
|
||||||
|
svelte: ^3.54.0
|
||||||
|
vite: ^4.0.0
|
||||||
|
dependencies:
|
||||||
|
'@sveltejs/vite-plugin-svelte': 2.0.0_svelte@3.55.0+vite@4.0.1
|
||||||
|
'@types/cookie': 0.5.1
|
||||||
|
cookie: 0.5.0
|
||||||
|
devalue: 4.2.0
|
||||||
|
esm-env: 1.0.0
|
||||||
|
kleur: 4.1.5
|
||||||
|
magic-string: 0.27.0
|
||||||
|
mime: 3.0.0
|
||||||
|
sade: 1.8.1
|
||||||
|
set-cookie-parser: 2.5.1
|
||||||
|
sirv: 2.0.2
|
||||||
|
svelte: 3.55.0
|
||||||
|
tiny-glob: 0.2.9
|
||||||
|
undici: 5.11.0
|
||||||
|
vite: 4.0.1
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@sveltejs/package/1.0.0-next.6_gf4dcx76vtk2o62ixxeqx7chra:
|
/@sveltejs/package/1.0.0-next.6_gf4dcx76vtk2o62ixxeqx7chra:
|
||||||
resolution: {integrity: sha512-EwekVYRnD1r0deTt+9OKRvDopdX59FdfMVV+sN/LtIRO8+mEYuuDkj4uurt5yA9o2sMsv9xiAIWT5qKrq0rXuQ==}
|
resolution: {integrity: sha512-EwekVYRnD1r0deTt+9OKRvDopdX59FdfMVV+sN/LtIRO8+mEYuuDkj4uurt5yA9o2sMsv9xiAIWT5qKrq0rXuQ==}
|
||||||
engines: {node: '>=16.14'}
|
engines: {node: '>=16.14'}
|
||||||
@@ -8366,6 +8363,25 @@ packages:
|
|||||||
- supports-color
|
- supports-color
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/@sveltejs/vite-plugin-svelte/2.0.0_svelte@3.55.0+vite@4.0.1:
|
||||||
|
resolution: {integrity: sha512-oUFrYQarRv4fppmxdrv00qw3wX8Ycdj0uv33MfpRZyR8K67dyxiOcHnqkB0zSy5sDJA8RC/2aNtYhXJ8NINVHQ==}
|
||||||
|
engines: {node: ^14.18.0 || >= 16}
|
||||||
|
peerDependencies:
|
||||||
|
svelte: ^3.54.0
|
||||||
|
vite: ^4.0.0
|
||||||
|
dependencies:
|
||||||
|
debug: 4.3.4
|
||||||
|
deepmerge: 4.2.2
|
||||||
|
kleur: 4.1.5
|
||||||
|
magic-string: 0.27.0
|
||||||
|
svelte: 3.55.0
|
||||||
|
svelte-hmr: 0.15.1_svelte@3.55.0
|
||||||
|
vite: 4.0.1
|
||||||
|
vitefu: 0.2.2_vite@4.0.1
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- supports-color
|
||||||
|
dev: true
|
||||||
|
|
||||||
/@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.20.2:
|
/@svgr/babel-plugin-add-jsx-attribute/6.0.0_@babel+core@7.20.2:
|
||||||
resolution: {integrity: sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==}
|
resolution: {integrity: sha512-MdPdhdWLtQsjd29Wa4pABdhWbaRMACdM1h31BY+c6FghTZqNGT7pEYdBoaGeKtdTOBC/XNFQaKVj+r/Ei2ryWA==}
|
||||||
engines: {node: '>=10'}
|
engines: {node: '>=10'}
|
||||||
@@ -22365,16 +22381,6 @@ packages:
|
|||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/prettier-plugin-svelte/2.8.1_kaioqtfwjumrsfopsgfoca65re:
|
|
||||||
resolution: {integrity: sha512-KA3K1J3/wKDnCxW7ZDRA/QL2Q67N7Xs3gOERqJ5X1qFjq1DdnN3K1R29scSKwh+kA8FF67pXbYytUpvN/i3iQw==}
|
|
||||||
peerDependencies:
|
|
||||||
prettier: ^1.16.4 || ^2.0.0
|
|
||||||
svelte: ^3.2.0
|
|
||||||
dependencies:
|
|
||||||
prettier: 2.8.0
|
|
||||||
svelte: 3.54.0
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/prettier-plugin-svelte/2.8.1_sro2v6ld777payjtkjtiuogcxi:
|
/prettier-plugin-svelte/2.8.1_sro2v6ld777payjtkjtiuogcxi:
|
||||||
resolution: {integrity: sha512-KA3K1J3/wKDnCxW7ZDRA/QL2Q67N7Xs3gOERqJ5X1qFjq1DdnN3K1R29scSKwh+kA8FF67pXbYytUpvN/i3iQw==}
|
resolution: {integrity: sha512-KA3K1J3/wKDnCxW7ZDRA/QL2Q67N7Xs3gOERqJ5X1qFjq1DdnN3K1R29scSKwh+kA8FF67pXbYytUpvN/i3iQw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -22391,12 +22397,6 @@ packages:
|
|||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/prettier/2.8.0:
|
|
||||||
resolution: {integrity: sha512-9Lmg8hTFZKG0Asr/kW9Bp8tJjRVluO8EJQVfY2T7FMw9T5jy4I/Uvx0Rca/XWf50QQ1/SS48+6IJWnrb+2yemA==}
|
|
||||||
engines: {node: '>=10.13.0'}
|
|
||||||
hasBin: true
|
|
||||||
dev: true
|
|
||||||
|
|
||||||
/prettier/2.8.1:
|
/prettier/2.8.1:
|
||||||
resolution: {integrity: sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==}
|
resolution: {integrity: sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==}
|
||||||
engines: {node: '>=10.13.0'}
|
engines: {node: '>=10.13.0'}
|
||||||
@@ -24700,8 +24700,36 @@ packages:
|
|||||||
picocolors: 1.0.0
|
picocolors: 1.0.0
|
||||||
sade: 1.8.1
|
sade: 1.8.1
|
||||||
svelte: 3.54.0
|
svelte: 3.54.0
|
||||||
svelte-preprocess: 4.10.7_gf4dcx76vtk2o62ixxeqx7chra
|
svelte-preprocess: 4.10.7_vjccw6zkwqrmxudvmy4reaayx4
|
||||||
typescript: 4.9.3
|
typescript: 4.9.4
|
||||||
|
transitivePeerDependencies:
|
||||||
|
- '@babel/core'
|
||||||
|
- coffeescript
|
||||||
|
- less
|
||||||
|
- node-sass
|
||||||
|
- postcss
|
||||||
|
- postcss-load-config
|
||||||
|
- pug
|
||||||
|
- sass
|
||||||
|
- stylus
|
||||||
|
- sugarss
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/svelte-check/2.10.2_svelte@3.55.0:
|
||||||
|
resolution: {integrity: sha512-h1Tuiir0m8J5yqN+Vx6qgKKk1L871e6a9o7rMwVWfu8Qs6Wg7x2R+wcxS3SO3VpW5JCxCat90rxPsZMYgz+HaQ==}
|
||||||
|
hasBin: true
|
||||||
|
peerDependencies:
|
||||||
|
svelte: ^3.24.0
|
||||||
|
dependencies:
|
||||||
|
'@jridgewell/trace-mapping': 0.3.17
|
||||||
|
chokidar: 3.5.3
|
||||||
|
fast-glob: 3.2.11
|
||||||
|
import-fresh: 3.3.0
|
||||||
|
picocolors: 1.0.0
|
||||||
|
sade: 1.8.1
|
||||||
|
svelte: 3.55.0
|
||||||
|
svelte-preprocess: 4.10.7_niwyv7xychq2ag6arq5eqxbomm
|
||||||
|
typescript: 4.9.4
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@babel/core'
|
- '@babel/core'
|
||||||
- coffeescript
|
- coffeescript
|
||||||
@@ -24724,7 +24752,67 @@ packages:
|
|||||||
svelte: 3.54.0
|
svelte: 3.54.0
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/svelte-preprocess/4.10.7_gf4dcx76vtk2o62ixxeqx7chra:
|
/svelte-hmr/0.15.1_svelte@3.55.0:
|
||||||
|
resolution: {integrity: sha512-BiKB4RZ8YSwRKCNVdNxK/GfY+r4Kjgp9jCLEy0DuqAKfmQtpL38cQK3afdpjw4sqSs4PLi3jIPJIFp259NkZtA==}
|
||||||
|
engines: {node: ^12.20 || ^14.13.1 || >= 16}
|
||||||
|
peerDependencies:
|
||||||
|
svelte: '>=3.19.0'
|
||||||
|
dependencies:
|
||||||
|
svelte: 3.55.0
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/svelte-preprocess/4.10.7_niwyv7xychq2ag6arq5eqxbomm:
|
||||||
|
resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==}
|
||||||
|
engines: {node: '>= 9.11.2'}
|
||||||
|
requiresBuild: true
|
||||||
|
peerDependencies:
|
||||||
|
'@babel/core': ^7.10.2
|
||||||
|
coffeescript: ^2.5.1
|
||||||
|
less: ^3.11.3 || ^4.0.0
|
||||||
|
node-sass: '*'
|
||||||
|
postcss: ^7 || ^8
|
||||||
|
postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0
|
||||||
|
pug: ^3.0.0
|
||||||
|
sass: ^1.26.8
|
||||||
|
stylus: ^0.55.0
|
||||||
|
sugarss: ^2.0.0
|
||||||
|
svelte: ^3.23.0
|
||||||
|
typescript: ^3.9.5 || ^4.0.0
|
||||||
|
peerDependenciesMeta:
|
||||||
|
'@babel/core':
|
||||||
|
optional: true
|
||||||
|
coffeescript:
|
||||||
|
optional: true
|
||||||
|
less:
|
||||||
|
optional: true
|
||||||
|
node-sass:
|
||||||
|
optional: true
|
||||||
|
postcss:
|
||||||
|
optional: true
|
||||||
|
postcss-load-config:
|
||||||
|
optional: true
|
||||||
|
pug:
|
||||||
|
optional: true
|
||||||
|
sass:
|
||||||
|
optional: true
|
||||||
|
stylus:
|
||||||
|
optional: true
|
||||||
|
sugarss:
|
||||||
|
optional: true
|
||||||
|
typescript:
|
||||||
|
optional: true
|
||||||
|
dependencies:
|
||||||
|
'@types/pug': 2.0.6
|
||||||
|
'@types/sass': 1.43.1
|
||||||
|
detect-indent: 6.1.0
|
||||||
|
magic-string: 0.25.9
|
||||||
|
sorcery: 0.10.0
|
||||||
|
strip-indent: 3.0.0
|
||||||
|
svelte: 3.55.0
|
||||||
|
typescript: 4.9.4
|
||||||
|
dev: true
|
||||||
|
|
||||||
|
/svelte-preprocess/4.10.7_vjccw6zkwqrmxudvmy4reaayx4:
|
||||||
resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==}
|
resolution: {integrity: sha512-sNPBnqYD6FnmdBrUmBCaqS00RyCsCpj2BG58A1JBswNF7b0OKviwxqVrOL/CKyJrLSClrSeqQv5BXNg2RUbPOw==}
|
||||||
engines: {node: '>= 9.11.2'}
|
engines: {node: '>= 9.11.2'}
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
@@ -24772,7 +24860,7 @@ packages:
|
|||||||
sorcery: 0.10.0
|
sorcery: 0.10.0
|
||||||
strip-indent: 3.0.0
|
strip-indent: 3.0.0
|
||||||
svelte: 3.54.0
|
svelte: 3.54.0
|
||||||
typescript: 4.9.3
|
typescript: 4.9.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/svelte/3.54.0:
|
/svelte/3.54.0:
|
||||||
@@ -24780,6 +24868,11 @@ packages:
|
|||||||
engines: {node: '>= 8'}
|
engines: {node: '>= 8'}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/svelte/3.55.0:
|
||||||
|
resolution: {integrity: sha512-uGu2FVMlOuey4JoKHKrpZFkoYyj0VLjJdz47zX5+gVK5odxHM40RVhar9/iK2YFRVxvfg9FkhfVlR0sjeIrOiA==}
|
||||||
|
engines: {node: '>= 8'}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/svelte2tsx/0.5.22_gf4dcx76vtk2o62ixxeqx7chra:
|
/svelte2tsx/0.5.22_gf4dcx76vtk2o62ixxeqx7chra:
|
||||||
resolution: {integrity: sha512-OytIql7Bv53oFuL0jjsnp/gNvR4ngAUdAjswgibmIQT2Lj2OIQYn2J3gKqRd+wSj/n3M/wrz4zJpudQRSfncZw==}
|
resolution: {integrity: sha512-OytIql7Bv53oFuL0jjsnp/gNvR4ngAUdAjswgibmIQT2Lj2OIQYn2J3gKqRd+wSj/n3M/wrz4zJpudQRSfncZw==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -25773,6 +25866,12 @@ packages:
|
|||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
|
/typescript/4.9.4:
|
||||||
|
resolution: {integrity: sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==}
|
||||||
|
engines: {node: '>=4.2.0'}
|
||||||
|
hasBin: true
|
||||||
|
dev: true
|
||||||
|
|
||||||
/ua-parser-js/0.7.31:
|
/ua-parser-js/0.7.31:
|
||||||
resolution: {integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==}
|
resolution: {integrity: sha512-qLK/Xe9E2uzmYI3qLeOmI0tEOt+TBBQyUIAh4aAgU05FVYzeZrKUdkAZfBNVGRaHVgV0TDkdEngJSw/SyQchkQ==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|||||||
Reference in New Issue
Block a user