@supabase/lite 0.2.0 → 0.2.1-next.2

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
@@ -12,9 +12,9 @@ Lightweight TypeScript-native Supabase implementation. SQLite as the primary dat
12
12
 
13
13
  Supalite targets AI builders who want quick, cheap prototypes today with a clear path to upgrade later. It supplements Supabase rather than replacing it. The project stays lightweight by implementing only what fits on top of non-UDF SQLite: roughly 60% of the most-used Supabase features, focused on the subset most useful for fast iteration.
14
14
 
15
- **Scope:** Both declarative schema (`supabase/schemas/*.sql`) and imperative Postgres migrations (`supabase/migrations/*.sql`, Supabase-CLI compatible) are supported. See [Migrations](#migrations). Advanced Postgres-specific column types (ranges, arrays of composites, and similar) are not available. See [STATUS.md](https://github.com/supabase-community/lite/blob/HEAD/STATUS.md) for the full compatibility matrix.
15
+ **Scope:** Both declarative schema (`supabase/schemas/*.sql`) and imperative Postgres migrations (`supabase/migrations/*.sql`, Supabase-CLI compatible) are supported. See [Migrations](#migrations). Advanced Postgres-specific column types (ranges, arrays of composites, and similar) are not available.
16
16
 
17
- Validated against the upstream PostgREST and GoTrue test suites: 1,803 tests passing. See [STATUS.md#testing](https://github.com/supabase-community/lite/blob/HEAD/STATUS.md#testing).
17
+ Validated against the upstream PostgREST and GoTrue test suites: 1,803 tests passing.
18
18
 
19
19
  ---
20
20
 
@@ -282,17 +282,17 @@ await app.connection.createMigrator(schema).migrate();
282
282
  export default app; // app.fetch handles requests
283
283
  ```
284
284
 
285
- ### Supported runtimes
285
+ ### Supported databases
286
286
 
287
- | Runtime | Module |
287
+ | Runtime/DB | Driver |
288
288
  |--------------|----------------------------------|
289
289
  | Bun | `bun:sqlite` (auto) |
290
290
  | Node.js ≥ 22 | `node:sqlite` (auto) |
291
291
  | Browser | `@sqlite.org/sqlite-wasm` (auto) |
292
- | PGlite | `@supabase/lite/pglite` |
293
- | PostgreSQL | `@supabase/lite/postgres` |
292
+ | Workerd | `@supabase/lite/workerd` |
293
+ | PGlite | `@supabase/lite/pglite` |
294
+ | Postgres | `@supabase/lite/postgres` |
294
295
 
295
- Edge runtime bindings are also supported. See [STATUS.md#database-support](https://github.com/supabase-community/lite/blob/HEAD/STATUS.md#database-support).
296
296
 
297
297
  ---
298
298