@sqliteai/sqlite-wasm 3.50.4-sync.0.9.99-vector.0.9.70 → 3.50.4-sync.1.0.10-vector.0.9.95-memory.0.8.5
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 +4 -3
- package/package.json +6 -4
- package/sqlite-wasm/jswasm/sqlite3.wasm +0 -0
package/README.md
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
# SQLite WASM
|
|
2
2
|
|
|
3
3
|
SQLite WASM conveniently wrapped as an ES Module. It includes the
|
|
4
|
-
[sqlite-sync](https://github.com/sqliteai/sqlite-sync)
|
|
5
|
-
[sqlite-vector](https://github.com/sqliteai/sqlite-vector)
|
|
4
|
+
[sqlite-sync](https://github.com/sqliteai/sqlite-sync),
|
|
5
|
+
[sqlite-vector](https://github.com/sqliteai/sqlite-vector), and
|
|
6
|
+
[sqlite-memory](https://github.com/sqliteai/sqlite-memory) extensions that are
|
|
6
7
|
automatically loaded at runtime. TypeScript types are from the
|
|
7
8
|
[official sqlite-wasm repository](https://github.com/sqlite/sqlite-wasm).
|
|
8
9
|
|
|
9
10
|
## Features
|
|
10
11
|
|
|
11
12
|
- 🚀 SQLite WASM wrapped as an ES Module
|
|
12
|
-
- 🔄 Includes sqlite-sync and sqlite-
|
|
13
|
+
- 🔄 Includes sqlite-sync, sqlite-vector, and sqlite-memory extensions
|
|
13
14
|
- 📝 Full TypeScript support
|
|
14
15
|
- 💾 OPFS (Origin Private File System) support for persistent storage
|
|
15
16
|
- ⚡ Worker thread support for better performance
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sqliteai/sqlite-wasm",
|
|
3
|
-
"version": "3.50.4-sync.0.
|
|
4
|
-
"description": "SQLite Wasm compiled with automatically initialized sqlite-sync and sqlite-
|
|
3
|
+
"version": "3.50.4-sync.1.0.10-vector.0.9.95-memory.0.8.5",
|
|
4
|
+
"description": "SQLite Wasm compiled with automatically initialized sqlite-sync, sqlite-vector, and sqlite-memory extensions. Conveniently packaged as an ES Module for effortless integration.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"sqlite",
|
|
7
7
|
"sqlite3",
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
"sqlite-sync",
|
|
19
19
|
"vector",
|
|
20
20
|
"sqlite-vector",
|
|
21
|
+
"memory",
|
|
22
|
+
"sqlite-memory",
|
|
21
23
|
"sqliteai"
|
|
22
24
|
],
|
|
23
25
|
"main": "index.mjs",
|
|
@@ -50,7 +52,7 @@
|
|
|
50
52
|
"test": "npm run start & HTTP_SERVER_PID=$! && sleep 3 && node test/test.cjs && kill $HTTP_SERVER_PID",
|
|
51
53
|
"fix": "npx prettier . --write",
|
|
52
54
|
"bundle": "npm run build && npm i && npm run fix && npm run publint && npm run check-types && npm run test",
|
|
53
|
-
"deploy": "npm run bundle && npm publish --tag
|
|
55
|
+
"deploy": "npm run bundle && npm publish --tag latest --access public --provenance"
|
|
54
56
|
},
|
|
55
57
|
"repository": {
|
|
56
58
|
"type": "git",
|
|
@@ -63,7 +65,7 @@
|
|
|
63
65
|
},
|
|
64
66
|
"homepage": "https://github.com/sqliteai/sqlite-wasm#readme",
|
|
65
67
|
"devDependencies": {
|
|
66
|
-
"http-server": "
|
|
68
|
+
"http-server": "^14.1.1",
|
|
67
69
|
"playwright": "*",
|
|
68
70
|
"prettier": "^3.5.3",
|
|
69
71
|
"prettier-plugin-jsdoc": "^1.3.2",
|
|
Binary file
|