@neondatabase/neon-js 0.1.0-beta.11 → 0.1.0-beta.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/@neondatabase/neon-js.svg)](https://www.npmjs.com/package/@neondatabase/neon-js)
4
4
  [![npm downloads](https://img.shields.io/npm/dm/@neondatabase/neon-js.svg)](https://www.npmjs.com/package/@neondatabase/neon-js)
5
5
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0%2B-blue.svg)](https://www.typescriptlang.org/)
6
- [![License](https://img.shields.io/npm/l/@neondatabase/neon-js.svg)](https://github.com/neondatabase-labs/neon-js/blob/main/LICENSE)
6
+ [![License](https://img.shields.io/npm/l/@neondatabase/neon-js.svg)](https://github.com/neondatabase/neon-js/blob/main/LICENSE)
7
7
 
8
8
  The official TypeScript SDK for Neon, combining authentication and database querying in a familiar interface.
9
9
 
@@ -15,6 +15,7 @@ The official TypeScript SDK for Neon, combining authentication and database quer
15
15
 
16
16
  - **Integrated Authentication** - Works out of the box with optional adapters (Supabase-compatible, React hooks)
17
17
  - **PostgreSQL Querying** - Full PostgREST client with type-safe queries
18
+ - **Anonymous Access** - Optional RLS-based data access for unauthenticated users
18
19
  - **High Performance** - Session caching, request deduplication
19
20
  - **Automatic Token Management** - Seamless token injection for database queries
20
21
  - **TypeScript First** - Fully typed with strict type checking
@@ -44,6 +45,8 @@ import { createClient } from '@neondatabase/neon-js';
44
45
  const client = createClient<Database>({
45
46
  auth: {
46
47
  url: import.meta.env.VITE_NEON_AUTH_URL,
48
+ // Optional: allow unauthenticated users to query data via RLS
49
+ // allowAnonymous: true,
47
50
  },
48
51
  dataApi: {
49
52
  url: import.meta.env.VITE_NEON_DATA_API_URL,
@@ -126,6 +129,27 @@ function MyComponent() {
126
129
  }
127
130
  ```
128
131
 
132
+ ### Anonymous Access
133
+
134
+ Enable `allowAnonymous` to let unauthenticated users query data. This uses an anonymous token for RLS-based access control:
135
+
136
+ ```typescript
137
+ import { createClient } from '@neondatabase/neon-js';
138
+
139
+ const client = createClient<Database>({
140
+ auth: {
141
+ url: import.meta.env.VITE_NEON_AUTH_URL,
142
+ allowAnonymous: true, // Enable anonymous data access
143
+ },
144
+ dataApi: {
145
+ url: import.meta.env.VITE_NEON_DATA_API_URL,
146
+ },
147
+ });
148
+
149
+ // Works without signing in - uses anonymous token for RLS
150
+ const { data: publicItems } = await client.from('public_items').select();
151
+ ```
152
+
129
153
  ## Authentication
130
154
 
131
155
  ### Sign Up
@@ -293,6 +317,7 @@ const client = createClient({
293
317
  // Auth configuration
294
318
  auth: {
295
319
  url: 'https://your-auth-server.neon.tech/auth',
320
+ allowAnonymous: true, // Optional: enable anonymous data access
296
321
  },
297
322
 
298
323
  // Data API configuration
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { NeonAuth, NeonAuth as NeonAuth$1, NeonAuthAdapter, NeonAuthAdapter as NeonAuthAdapter$1, NeonAuthConfig, NeonAuthPublicApi, NeonAuthPublicApi as NeonAuthPublicApi$1, ReactBetterAuthClient, VanillaBetterAuthClient } from "@neondatabase/auth";
1
+ import { NeonAuth, NeonAuth as NeonAuth$1, NeonAuthAdapter, NeonAuthAdapter as NeonAuthAdapter$1, NeonAuthConfig, NeonAuthConfig as NeonAuthConfig$1, NeonAuthPublicApi, NeonAuthPublicApi as NeonAuthPublicApi$1, ReactBetterAuthClient, VanillaBetterAuthClient } from "@neondatabase/auth";
2
2
  import { BetterAuthVanillaAdapter, BetterAuthVanillaAdapterInstance, BetterAuthVanillaAdapterInstance as BetterAuthVanillaAdapterInstance$1, BetterAuthVanillaAdapterOptions, SupabaseAuthAdapter, SupabaseAuthAdapterInstance, SupabaseAuthAdapterInstance as SupabaseAuthAdapterInstance$1, SupabaseAuthAdapterOptions } from "@neondatabase/auth/vanilla/adapters";
3
3
  import { BetterAuthReactAdapterInstance } from "@neondatabase/auth/react/adapters";
4
4
  import { AuthRequiredError, DefaultSchemaName, DefaultSchemaName as DefaultSchemaName$1, NeonPostgrestClient, NeonPostgrestClientConstructorOptions, fetchWithToken } from "@neondatabase/postgrest-js";
@@ -27,11 +27,9 @@ declare class NeonClient<Database = any, SchemaName extends string & keyof Datab
27
27
  * Auth configuration for createClient
28
28
  */
29
29
  type CreateClientAuthConfig<T extends NeonAuthAdapter$1> = {
30
- /** The adapter builder to use. Defaults to BetterAuthVanillaAdapter() if not specified. */
31
- adapter?: (url: string) => T;
32
30
  /** The auth service URL */
33
31
  url: string;
34
- };
32
+ } & NeonAuthConfig$1<T>;
35
33
  /**
36
34
  * Data API configuration for createClient
37
35
  */
@@ -101,6 +99,7 @@ type CreateClientResult<Database, TAdapter extends NeonAuthAdapter$1> = NeonClie
101
99
  declare function createClient<Database = any>(config: {
102
100
  auth: {
103
101
  url: string;
102
+ allowAnonymous?: boolean;
104
103
  };
105
104
  dataApi: CreateClientDataApiConfig<DefaultSchemaName$1<Database>, BetterAuthVanillaAdapterInstance$1>;
106
105
  }): CreateClientResult<Database, BetterAuthVanillaAdapterInstance$1>;
package/dist/index.mjs CHANGED
@@ -25,9 +25,12 @@ var NeonClient = class extends NeonPostgrestClient {
25
25
  //#region src/client/client-factory.ts
26
26
  function createClient(config) {
27
27
  const { auth: authConfig, dataApi: dataApiConfig } = config;
28
- const auth = createInternalNeonAuth(authConfig.url, { adapter: authConfig.adapter });
28
+ const auth = createInternalNeonAuth(authConfig.url, {
29
+ adapter: authConfig.adapter,
30
+ allowAnonymous: authConfig.allowAnonymous ?? false
31
+ });
29
32
  const getAccessToken = async () => {
30
- return await auth.getJWTToken();
33
+ return auth.getJWTToken();
31
34
  };
32
35
  const authFetch = fetchWithToken$1(getAccessToken, dataApiConfig.options?.global?.fetch);
33
36
  return new NeonClient({
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neondatabase/neon-js",
3
- "version": "0.1.0-beta.10",
3
+ "version": "0.1.0-beta.12",
4
4
  "description": "TypeScript SDK for Neon Auth and Data API - authentication and PostgreSQL querying",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -18,13 +18,13 @@
18
18
  "supabase",
19
19
  "data-api"
20
20
  ],
21
- "homepage": "https://github.com/neondatabase-labs/neon-js/tree/main/packages/neon-js#readme",
21
+ "homepage": "https://github.com/neondatabase/neon-js/tree/main/packages/neon-js#readme",
22
22
  "bugs": {
23
- "url": "https://github.com/neondatabase-labs/neon-js/issues"
23
+ "url": "https://github.com/neondatabase/neon-js/issues"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "git+https://github.com/neondatabase-labs/neon-js.git",
27
+ "url": "git+https://github.com/neondatabase/neon-js.git",
28
28
  "directory": "packages/neon-js"
29
29
  },
30
30
  "funding": {
@@ -92,7 +92,10 @@
92
92
  }
93
93
  },
94
94
  "files": [
95
- "dist"
95
+ "dist",
96
+ "llms-full.txt",
97
+ "llms.txt",
98
+ "llms-theming.txt"
96
99
  ],
97
100
  "publishConfig": {
98
101
  "access": "public"
@@ -114,7 +117,7 @@
114
117
  },
115
118
  "dependencies": {
116
119
  "@neondatabase/postgrest-js": "^0.1.0-alpha.1",
117
- "@neondatabase/auth": "^0.1.0-beta.11",
120
+ "@neondatabase/auth": "^0.1.0-beta.13",
118
121
  "@supabase/postgres-meta": "0.93.1",
119
122
  "meow": "14.0.0",
120
123
  "zod": "4.1.12"
@@ -1,3 +1,3 @@
1
1
  <!-- Auto-generated safelist for better-auth-ui classes -->
2
2
  <!-- This file ensures all necessary utilities are generated -->
3
- <div class="!bg-transparent !p-2 !py-5 !size-8 !w-auto -mx-1 -my-1 @container/card-header [&_p]:leading-relaxed [&_svg:not([class*= [&_svg]:pointer-events-none [&_svg]:shrink-0 [.border-b]:pb-6 [.border-t]:pt-6 absolute action-button animate-caret-blink animate-pulse animate-spin aria-invalid:border-destructive aria-invalid:ring-destructive/20 aspect-square auto-rows-min bg-accent bg-background bg-black/50 bg-border bg-card bg-foreground bg-muted bg-popover bg-transparent border border-color border-input border-r border-solid border-transparent border-y break-all col-start-2 cursor-default dark:aria-invalid:ring-destructive/40 dark:bg-input/30 dark:data-[active=true]:aria-invalid:ring-destructive/40 dark:data-[state=active]:bg-input/30 dark:data-[state=active]:border-input dark:data-[state=active]:text-foreground dark:data-[state=checked]:bg-primary dark:data-[variant=destructive]:focus:bg-destructive/20 dark:text-muted-foreground data-[active=true]:aria-invalid:border-destructive data-[active=true]:aria-invalid:ring-destructive/20 data-[active=true]:border-ring data-[active=true]:ring-[3px] data-[active=true]:ring-ring/50 data-[active=true]:z-10 data-[disabled]:opacity-50 data-[disabled]:pointer-events-none data-[error=true]:text-destructive data-[inset]:pl-8 data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px data-[placeholder]:text-muted-foreground data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[state=active]:bg-background data-[state=active]:shadow-sm data-[state=checked]:bg-primary data-[state=checked]:border-primary data-[state=checked]:text-primary-foreground data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:bg-accent data-[state=open]:fade-in-0 data-[state=open]:text-accent-foreground data-[state=open]:text-muted-foreground data-[state=open]:zoom-in-95 data-[variant=destructive]:*:[svg]:!text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:text-destructive disabled:cursor-not-allowed disabled:opacity-50 disabled:pointer-events-none duration-1000 duration-200 field-sizing-content file:bg-transparent file:border-0 file:font-medium file:h-7 file:inline-flex file:text-foreground file:text-sm fill-current first:border-l first:rounded-l-md fixed flex flex-1 flex-col flex-col-reverse flex-row flex-shrink-0 focus-visible:border-ring focus-visible:outline-1 focus-visible:outline-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 focus:bg-accent focus:outline-hidden focus:ring-2 focus:ring-offset-2 focus:ring-ring focus:text-accent-foreground font-bold font-medium font-mono font-sans font-semibold gap-0.5 gap-1 gap-1.5 gap-2 gap-3 gap-4 gap-6 grid grid-cols-2 grid-rows-[auto_auto] group-data-[disabled=true]:opacity-50 group-data-[disabled=true]:pointer-events-none group-data-[vaul-drawer-direction=bottom]/drawer-content:block group-data-[vaul-drawer-direction=bottom]/drawer-content:text-center group-data-[vaul-drawer-direction=top]/drawer-content:text-center group/drawer-content grow h-2 h-3 h-4 h-5 h-8 h-9 h-[calc(100%-1px)] h-auto h-fit h-px has-data-[slot=card-action]:grid-cols-[1fr_auto] has-disabled:opacity-50 hidden hover:opacity-100 hover:underline inline-flex inset-0 items-center items-start justify-between justify-center justify-items-center justify-items-start justify-self-end justify-start last:rounded-r-md leading-[24px] leading-none leading-tight left-2 left-[50%] lg:w-60 line-clamp-1 max-h-(--radix-dropdown-menu-content-available-height) max-h-(--radix-select-content-available-height) max-w-14 max-w-32 max-w-56 max-w-64 max-w-[465px] max-w-[calc(100%-2rem)] max-w-full max-w-sm mb-0.5 mb-[32px] md:block md:flex-row md:gap-1.5 md:gap-12 md:gap-6 md:h-3.5 md:h-4 md:h-5.5 md:hidden md:ms-auto md:text-left md:text-sm md:text-start md:text-xl md:w-40 md:w-56 md:w-64 me-6 min-h-16 min-h-4 min-w-0 min-w-56 min-w-[8rem] ml-1 ml-auto ms-auto mt-0.5 mt-1.5 mt-4 mt-[32px] mt-auto mx-0 mx-auto my-0 my-0.5 my-1 my-2 my-[26px] my-[30px] my-[40px] my-auto no-underline opacity-50 opacity-70 origin-(--radix-dropdown-menu-content-transform-origin) origin-(--radix-select-content-transform-origin) outline-hidden outline-none overflow-hidden overflow-x-hidden overflow-y-auto p-0 p-1 p-2 p-4 p-6 p-[20px] p-[3px] pb-0 pb-4 peer peer-disabled:cursor-not-allowed peer-disabled:opacity-50 pl-8 placeholder:text-muted-foreground pointer-events-none pr-2 px-0 px-2 px-3 px-4 px-5 px-6 py-1 py-1.5 py-2 py-3 py-4 py-6 relative right-0 right-2 right-4 ring-offset-background rounded rounded-[4px] rounded-b-xl rounded-full rounded-lg rounded-md rounded-sm rounded-xl rounded-xs row-span-2 row-start-1 select-none selection:bg-primary selection:text-primary-foreground self-center self-start shadow-lg shadow-md shadow-sm shadow-xs shrink-0 shrink-2 size-10 size-16 size-2 size-20 size-3 size-3.5 size-4 size-5 size-8 size-[50%] size-fit size-full sm:flex-row sm:justify-end sm:max-w-lg sm:max-w-md sm:text-left space-y-3 space-y-6 sr-only st0 st1 text-2xl text-[#666666] text-[12px] text-[14px] text-[24px] text-base text-card-foreground text-center text-current text-destructive text-foreground text-left text-lg text-muted-foreground text-popover-foreground text-sm text-start text-xs top-0 top-4 top-[50%] tracking-tight tracking-widest transition-[color,box-shadow] transition-all transition-none transition-opacity transition-shadow translate-x-[-50%] translate-y-[-50%] truncate underline uppercase w-1/3 w-12 w-14 w-2/3 w-24 w-28 w-32 w-48 w-9 w-[--radix-dropdown-menu-trigger-width] w-[--radix-select-trigger-width] w-[100px] w-fit w-full w-px whitespace-nowrap z-50"></div>
3
+ <div class="!bg-transparent !p-2 !py-5 !size-8 !w-auto *:[span]:last:flex *:[span]:last:gap-2 *:[span]:last:items-center *:data-[slot=select-value]:flex *:data-[slot=select-value]:gap-2 *:data-[slot=select-value]:items-center *:data-[slot=select-value]:line-clamp-1 -mx-1 -my-1 @container/card-header [&_p]:leading-relaxed [&_svg:not([class*='size-'])]:size-4 [&_svg:not([class*='text-'])]:text-muted-foreground [&_svg]:pointer-events-none [&_svg]:shrink-0 [.border-b]:pb-6 [.border-t]:pt-6 absolute action-button animate-caret-blink animate-pulse animate-spin aria-invalid:border-destructive aria-invalid:ring-destructive/20 aspect-square auto-rows-min bg-accent bg-background bg-black/50 bg-border bg-card bg-foreground bg-muted bg-popover bg-transparent border border-color border-input border-r border-solid border-transparent border-y break-all col-start-2 cursor-default dark:aria-invalid:ring-destructive/40 dark:bg-input/30 dark:data-[active=true]:aria-invalid:ring-destructive/40 dark:data-[state=active]:bg-input/30 dark:data-[state=active]:border-input dark:data-[state=active]:text-foreground dark:data-[state=checked]:bg-primary dark:data-[variant=destructive]:focus:bg-destructive/20 dark:hover:bg-input/50 dark:text-muted-foreground data-[active=true]:aria-invalid:border-destructive data-[active=true]:aria-invalid:ring-destructive/20 data-[active=true]:border-ring data-[active=true]:ring-[3px] data-[active=true]:ring-ring/50 data-[active=true]:z-10 data-[disabled]:opacity-50 data-[disabled]:pointer-events-none data-[error=true]:text-destructive data-[inset]:pl-8 data-[orientation=horizontal]:h-px data-[orientation=horizontal]:w-full data-[orientation=vertical]:h-full data-[orientation=vertical]:w-px data-[placeholder]:text-muted-foreground data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 data-[size=default]:h-9 data-[size=sm]:h-8 data-[state=active]:bg-background data-[state=active]:shadow-sm data-[state=checked]:bg-primary data-[state=checked]:border-primary data-[state=checked]:text-primary-foreground data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[state=open]:animate-in data-[state=open]:bg-accent data-[state=open]:fade-in-0 data-[state=open]:text-accent-foreground data-[state=open]:text-muted-foreground data-[state=open]:zoom-in-95 data-[variant=destructive]:*:[svg]:!text-destructive data-[variant=destructive]:focus:bg-destructive/10 data-[variant=destructive]:focus:text-destructive data-[variant=destructive]:text-destructive disabled:cursor-not-allowed disabled:opacity-50 disabled:pointer-events-none duration-1000 duration-200 field-sizing-content file:bg-transparent file:border-0 file:font-medium file:h-7 file:inline-flex file:text-foreground file:text-sm fill-current first:border-l first:rounded-l-md fixed flex flex-1 flex-col flex-col-reverse flex-row flex-shrink-0 focus-visible:border-ring focus-visible:outline-1 focus-visible:outline-ring focus-visible:ring-[3px] focus-visible:ring-ring/50 focus:bg-accent focus:outline-hidden focus:ring-2 focus:ring-offset-2 focus:ring-ring focus:text-accent-foreground font-bold font-medium font-mono font-sans font-semibold gap-0.5 gap-1 gap-1.5 gap-2 gap-3 gap-4 gap-6 grid grid-cols-2 grid-rows-[auto_auto] group-data-[disabled=true]:opacity-50 group-data-[disabled=true]:pointer-events-none group-data-[vaul-drawer-direction=bottom]/drawer-content:block group-data-[vaul-drawer-direction=bottom]/drawer-content:text-center group-data-[vaul-drawer-direction=top]/drawer-content:text-center group/drawer-content grow h-2 h-3 h-4 h-5 h-8 h-9 h-[calc(100%-1px)] h-auto h-fit h-px has-data-[slot=card-action]:grid-cols-[1fr_auto] has-disabled:opacity-50 hidden hover:opacity-100 hover:underline inline-flex inset-0 items-center items-start justify-between justify-center justify-items-center justify-items-start justify-self-end justify-start last:rounded-r-md leading-[24px] leading-none leading-tight left-2 left-[50%] lg:w-60 line-clamp-1 max-h-(--radix-dropdown-menu-content-available-height) max-h-(--radix-select-content-available-height) max-w-14 max-w-32 max-w-56 max-w-64 max-w-[465px] max-w-[calc(100%-2rem)] max-w-full max-w-sm mb-0.5 mb-[32px] md:block md:flex-row md:gap-1.5 md:gap-12 md:gap-6 md:h-3.5 md:h-4 md:h-5.5 md:hidden md:ms-auto md:text-left md:text-sm md:text-start md:text-xl md:w-40 md:w-56 md:w-64 me-6 min-h-16 min-h-4 min-w-0 min-w-56 min-w-[8rem] ml-1 ml-auto ms-auto mt-0.5 mt-1.5 mt-4 mt-[32px] mt-auto mx-0 mx-auto my-0 my-0.5 my-1 my-2 my-[26px] my-[30px] my-[40px] my-auto no-underline opacity-50 opacity-70 origin-(--radix-dropdown-menu-content-transform-origin) origin-(--radix-select-content-transform-origin) outline-hidden outline-none overflow-hidden overflow-x-hidden overflow-y-auto p-0 p-1 p-2 p-4 p-6 p-[20px] p-[3px] pb-0 pb-4 peer peer-disabled:cursor-not-allowed peer-disabled:opacity-50 pl-2 pl-8 placeholder:text-muted-foreground pointer-events-none pr-2 pr-8 px-0 px-2 px-3 px-4 px-5 px-6 py-1 py-1.5 py-2 py-3 py-4 py-6 relative right-0 right-2 right-4 ring-offset-background rounded rounded-[4px] rounded-b-xl rounded-full rounded-lg rounded-md rounded-sm rounded-xl rounded-xs row-span-2 row-start-1 select-none selection:bg-primary selection:text-primary-foreground self-center self-start shadow-lg shadow-md shadow-sm shadow-xs shrink-0 shrink-2 size-10 size-16 size-2 size-20 size-3 size-3.5 size-4 size-5 size-8 size-[50%] size-fit size-full sm:flex-row sm:justify-end sm:max-w-lg sm:max-w-md sm:text-left space-y-3 space-y-6 sr-only st0 st1 text-2xl text-[#666666] text-[12px] text-[14px] text-[24px] text-base text-card-foreground text-center text-current text-destructive text-foreground text-left text-lg text-muted-foreground text-popover-foreground text-sm text-start text-xs top-0 top-4 top-[50%] tracking-tight tracking-widest transition-[color,box-shadow] transition-all transition-none transition-opacity transition-shadow translate-x-[-50%] translate-y-[-50%] truncate underline uppercase w-1/3 w-12 w-14 w-2/3 w-24 w-28 w-32 w-48 w-9 w-[--radix-dropdown-menu-trigger-width] w-[--radix-select-trigger-width] w-[100px] w-fit w-full w-px whitespace-nowrap z-50"></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neondatabase/neon-js",
3
- "version": "0.1.0-beta.11",
3
+ "version": "0.1.0-beta.13",
4
4
  "description": "TypeScript SDK for Neon Auth and Data API - authentication and PostgreSQL querying",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",
@@ -18,13 +18,13 @@
18
18
  "supabase",
19
19
  "data-api"
20
20
  ],
21
- "homepage": "https://github.com/neondatabase-labs/neon-js/tree/main/packages/neon-js#readme",
21
+ "homepage": "https://github.com/neondatabase/neon-js/tree/main/packages/neon-js#readme",
22
22
  "bugs": {
23
- "url": "https://github.com/neondatabase-labs/neon-js/issues"
23
+ "url": "https://github.com/neondatabase/neon-js/issues"
24
24
  },
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "git+https://github.com/neondatabase-labs/neon-js.git",
27
+ "url": "git+https://github.com/neondatabase/neon-js.git",
28
28
  "directory": "packages/neon-js"
29
29
  },
30
30
  "funding": {
@@ -92,7 +92,10 @@
92
92
  }
93
93
  },
94
94
  "files": [
95
- "dist"
95
+ "dist",
96
+ "llms-full.txt",
97
+ "llms.txt",
98
+ "llms-theming.txt"
96
99
  ],
97
100
  "publishConfig": {
98
101
  "access": "public"
@@ -114,7 +117,7 @@
114
117
  },
115
118
  "dependencies": {
116
119
  "@neondatabase/postgrest-js": "0.1.0-alpha.1",
117
- "@neondatabase/auth": "0.1.0-beta.11",
120
+ "@neondatabase/auth": "0.1.0-beta.13",
118
121
  "@supabase/postgres-meta": "0.93.1",
119
122
  "meow": "14.0.0",
120
123
  "zod": "4.1.12"