@xnetjs/sqlite 2.5.0 → 3.0.0
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 +5 -0
- package/package.json +19 -19
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
Unified SQLite adapter for xNet across all platforms (Electron, Web, Expo).
|
|
4
4
|
|
|
5
|
+
> **Alpha software.** xNet is released but early: this package is on npm and
|
|
6
|
+
> usable today, but its API can change between releases, sometimes without a
|
|
7
|
+
> migration path. Pin your version. See the
|
|
8
|
+
> [project README](https://github.com/crs48/xNet#readme) for what alpha means here.
|
|
9
|
+
|
|
5
10
|
## Installation
|
|
6
11
|
|
|
7
12
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xnetjs/sqlite",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Unified SQLite adapter for xNet across all platforms",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -12,40 +12,40 @@
|
|
|
12
12
|
"types": "./dist/index.d.ts",
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|
|
15
|
-
"
|
|
16
|
-
"
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.js"
|
|
17
17
|
},
|
|
18
18
|
"./electron": {
|
|
19
|
-
"
|
|
20
|
-
"
|
|
19
|
+
"types": "./dist/adapters/electron.d.ts",
|
|
20
|
+
"import": "./dist/adapters/electron.js"
|
|
21
21
|
},
|
|
22
22
|
"./web": {
|
|
23
|
-
"
|
|
24
|
-
"
|
|
23
|
+
"types": "./dist/adapters/web.d.ts",
|
|
24
|
+
"import": "./dist/adapters/web.js"
|
|
25
25
|
},
|
|
26
26
|
"./web-proxy": {
|
|
27
|
-
"
|
|
28
|
-
"
|
|
27
|
+
"types": "./dist/adapters/web-proxy.d.ts",
|
|
28
|
+
"import": "./dist/adapters/web-proxy.js"
|
|
29
29
|
},
|
|
30
30
|
"./web-worker": {
|
|
31
|
-
"
|
|
32
|
-
"
|
|
31
|
+
"types": "./dist/adapters/web-worker.d.ts",
|
|
32
|
+
"import": "./dist/adapters/web-worker.js"
|
|
33
33
|
},
|
|
34
34
|
"./web-router-worker": {
|
|
35
|
-
"
|
|
36
|
-
"
|
|
35
|
+
"types": "./dist/adapters/web-router-worker.d.ts",
|
|
36
|
+
"import": "./dist/adapters/web-router-worker.js"
|
|
37
37
|
},
|
|
38
38
|
"./browser-support": {
|
|
39
|
-
"
|
|
40
|
-
"
|
|
39
|
+
"types": "./dist/browser-support.d.ts",
|
|
40
|
+
"import": "./dist/browser-support.js"
|
|
41
41
|
},
|
|
42
42
|
"./expo": {
|
|
43
|
-
"
|
|
44
|
-
"
|
|
43
|
+
"types": "./dist/adapters/expo.d.ts",
|
|
44
|
+
"import": "./dist/adapters/expo.js"
|
|
45
45
|
},
|
|
46
46
|
"./memory": {
|
|
47
|
-
"
|
|
48
|
-
"
|
|
47
|
+
"types": "./dist/adapters/memory.d.ts",
|
|
48
|
+
"import": "./dist/adapters/memory.js"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"files": [
|