Fix scope

This commit is contained in:
Matt Kane
2026-04-01 10:58:32 +01:00
parent 482a442f60
commit 2e863566b3
264 changed files with 578 additions and 578 deletions

View File

@@ -1,5 +1,5 @@
{
"name": "@emdashcms/auth",
"name": "@emdash-cms/auth",
"version": "0.0.0",
"description": "Passkey-first authentication for EmDash",
"type": "module",

View File

@@ -1,5 +1,5 @@
/**
* Kysely database adapter for @emdashcms/auth
* Kysely database adapter for @emdash-cms/auth
*/
import type { Kysely, Insertable, Selectable, Updateable } from "kysely";

View File

@@ -1,5 +1,5 @@
/**
* Configuration schema for @emdashcms/auth
* Configuration schema for @emdash-cms/auth
*/
import { z } from "zod";

View File

@@ -1,5 +1,5 @@
/**
* @emdashcms/auth - Passkey-first authentication for EmDash
* @emdash-cms/auth - Passkey-first authentication for EmDash
*
* Email is now handled by the plugin email pipeline (see PLUGIN-EMAIL.md).
* Auth functions accept an optional `email` send function instead of a
@@ -8,7 +8,7 @@
*
* @example
* ```ts
* import { auth } from '@emdashcms/auth'
* import { auth } from '@emdash-cms/auth'
*
* export default defineConfig({
* integrations: [

View File

@@ -1,5 +1,5 @@
/**
* Core types for @emdashcms/auth
* Core types for @emdash-cms/auth
*/
// ============================================================================