···71717272## Usage
73737474-Use either the `@lure/fetch` or `@lure/express` packages to construct an
7474+Use either the `@lure-hooks/fetch` or `@lure-hooks/express` packages to construct an
7575endpoint handler that suits your HTTP server of choice.
76767777Both handler constructors take the following parameters:
+1-1
packages/core/README.md
···11-# `@lure/core`
11+# `@lure-hooks/core`
2233Core implementation for working with lures. This includes:
44
···11import express from "express";
22-import { createLureHandler as coreCreateLureHandler } from "@lure/core";
33-import type { LureHandlerOptions } from "@lure/core";
22+import { createLureHandler as coreCreateLureHandler } from "@lure-hooks/core";
33+import type { LureHandlerOptions } from "@lure-hooks/core";
44import type { StandardSchemaV1 } from "@standard-schema/spec";
5566export async function createLureHandler<
···11-# `@lure/fetch`
11+# `@lure-hooks/fetch`
2233Provides a fetch-compatible request handler for processing webhook events with
44Lure. Suitable for use with Deno, Bun, Cloudflare Workers, or any other
55runtime that uses the fetch API.
6677+## Installation
88+99+```sh
1010+npm install @lure-hooks/fetch
1111+```
1212+713## Usage
814915```ts
1010-import { createLureHandler } from '@lure/fetch';
1616+import { createLureHandler } from '@lure-hooks/fetch';
11171218const lure = await createLureHandler({
1319 basePath: '/webhooks',
···3137implements the Standard Schema spec (Zod, Valibot, Arktype, etc.) will work.
32383339```ts
3434-import { createLureHandler } from '@lure/fetch';
4040+import { createLureHandler } from '@lure-hooks/fetch';
3541import * as v from 'valibot';
36423743const lure = await createLureHandler({
···11-import { createLureHandler as coreCreateLureHandler } from "@lure/core";
22-import type { LureHandlerOptions } from "@lure/core";
11+import { createLureHandler as coreCreateLureHandler } from "@lure-hooks/core";
22+import type { LureHandlerOptions } from "@lure-hooks/core";
33import type { StandardSchemaV1 } from "@standard-schema/spec";
4455export async function createLureHandler<