From 738dec0a727bbfe22c56af6ceeb6c1d2a3e4ff04 Mon Sep 17 00:00:00 2001 From: Diego Reis Date: Mon, 28 Jul 2025 17:07:34 -0300 Subject: [PATCH] Address PR's comments https://github.com/tursodatabase/turso/pull/2307 --- bindings/javascript/README.md | 4 ++-- bindings/javascript/package.json | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/bindings/javascript/README.md b/bindings/javascript/README.md index 7be629151..58808f83f 100644 --- a/bindings/javascript/README.md +++ b/bindings/javascript/README.md @@ -5,10 +5,10 @@ The next evolution of SQLite: A high-performance, SQLite-compatible database lib ## Features - **SQLite Compatible**: Drop-in replacement for better-sqlite3 with familiar API -- **High Performance**: Built with Rust for maximum speed and efficiency +- **High Performance**: Built with Rust for maximum speed and efficiency - **In-Process**: No network overhead, runs directly in your Node.js process - **TypeScript Support**: Full TypeScript definitions included -- **Cross-Platform**: Supports Linux, macOS, and Windows +- **Cross-Platform**: Supports Linux, macOS, Windows and browsers (through WebAssembly) - **Transaction Support**: Full ACID transactions with rollback support - **Prepared Statements**: Optimized query execution with parameter binding diff --git a/bindings/javascript/package.json b/bindings/javascript/package.json index 69dddfe4a..b0831f06b 100644 --- a/bindings/javascript/package.json +++ b/bindings/javascript/package.json @@ -6,6 +6,7 @@ "url": "https://github.com/tursodatabase/turso" }, "description": "The Turso database library", + "main": "wrapper.js", "files": [ "wrapper.js", "browser.js" @@ -43,4 +44,4 @@ "version": "napi version" }, "packageManager": "yarn@4.9.2" -} \ No newline at end of file +}