@tursodatabase/database 0.1.5-pre.2 → 0.1.5-pre.3

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -5
package/README.md CHANGED
@@ -23,7 +23,7 @@ This package is the Turso in-memory database library for JavaScript.
23
23
  - **SQLite compatible:** SQLite query language and file format support ([status](https://github.com/tursodatabase/turso/blob/main/COMPAT.md)).
24
24
  - **In-process**: No network overhead, runs directly in your Node.js process
25
25
  - **TypeScript support**: Full TypeScript definitions included
26
- - **Cross-platform**: Supports Linux, macOS, Windows and browsers (through WebAssembly)
26
+ - **Cross-platform**: Supports Linux (x86 and arm64), macOS, Windows and browsers (through WebAssembly)
27
27
 
28
28
  ## Installation
29
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tursodatabase/database",
3
- "version": "0.1.5-pre.2",
3
+ "version": "0.1.5-pre.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/tursodatabase/turso"
@@ -26,6 +26,7 @@
26
26
  "x86_64-unknown-linux-gnu",
27
27
  "x86_64-pc-windows-msvc",
28
28
  "universal-apple-darwin",
29
+ "aarch64-unknown-linux-gnu",
29
30
  "wasm32-wasip1-threads"
30
31
  ]
31
32
  },
@@ -61,9 +62,10 @@
61
62
  }
62
63
  },
63
64
  "optionalDependencies": {
64
- "@tursodatabase/database-linux-x64-gnu": "0.1.5-pre.2",
65
- "@tursodatabase/database-win32-x64-msvc": "0.1.5-pre.2",
66
- "@tursodatabase/database-darwin-universal": "0.1.5-pre.2",
67
- "@tursodatabase/database-wasm32-wasi": "0.1.5-pre.2"
65
+ "@tursodatabase/database-linux-x64-gnu": "0.1.5-pre.3",
66
+ "@tursodatabase/database-win32-x64-msvc": "0.1.5-pre.3",
67
+ "@tursodatabase/database-darwin-universal": "0.1.5-pre.3",
68
+ "@tursodatabase/database-linux-arm64-gnu": "0.1.5-pre.3",
69
+ "@tursodatabase/database-wasm32-wasi": "0.1.5-pre.3"
68
70
  }
69
71
  }