@syncular/dialect-react-native-nitro-sqlite 0.0.1-98 → 0.0.2-126

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 +29 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # @syncular/dialect-react-native-nitro-sqlite
2
+
3
+ React Native Nitro SQLite Kysely dialect. Includes JSON serialization support via `SerializePlugin`.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @syncular/dialect-react-native-nitro-sqlite
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```ts
14
+ import { open } from 'react-native-nitro-sqlite';
15
+ import { createNitroSqliteDb } from '@syncular/dialect-react-native-nitro-sqlite';
16
+
17
+ const db = createNitroSqliteDb<MyDb>({ name: 'app.db', open });
18
+ ```
19
+
20
+ ## Documentation
21
+
22
+ - Dialect selection: https://syncular.dev/docs/introduction/installation#client-database-dialects
23
+
24
+ ## Links
25
+
26
+ - GitHub: https://github.com/syncular/syncular
27
+ - Issues: https://github.com/syncular/syncular/issues
28
+
29
+ > Status: Alpha. APIs may change between releases.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@syncular/dialect-react-native-nitro-sqlite",
3
- "version": "0.0.1-98",
3
+ "version": "0.0.2-126",
4
4
  "description": "React Native Nitro SQLite dialect for the Syncular client",
5
5
  "license": "MIT",
6
6
  "author": "Benjamin Kniffler",
@@ -43,7 +43,7 @@
43
43
  "release": "bunx syncular-publish"
44
44
  },
45
45
  "dependencies": {
46
- "@syncular/core": "0.0.1"
46
+ "@syncular/core": "0.0.2-126"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "kysely": "^0.28.0",