@homeofthings/sqlite3 7.0.3 → 7.0.4
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 +2 -2
- package/deps/common-sqlite.gypi +1 -1
- package/deps/sqlite-amalgamation-3530300.zip +0 -0
- package/package.json +6 -6
- package/prebuilds/darwin-arm64/@homeofthings+sqlite3.glibc.node +0 -0
- package/prebuilds/darwin-x64/@homeofthings+sqlite3.glibc.node +0 -0
- package/prebuilds/linux-arm64/@homeofthings+sqlite3.glibc.node +0 -0
- package/prebuilds/linux-arm64/@homeofthings+sqlite3.musl.node +0 -0
- package/prebuilds/linux-x64/@homeofthings+sqlite3.glibc.node +0 -0
- package/prebuilds/linux-x64/@homeofthings+sqlite3.musl.node +0 -0
- package/prebuilds/win32-arm64/@homeofthings+sqlite3.glibc.node +0 -0
- package/prebuilds/win32-x64/@homeofthings+sqlite3.glibc.node +0 -0
- package/deps/sqlite-amalgamation-3530200.zip +0 -0
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Asynchronous, non-blocking [SQLite3](https://sqlite.org/) bindings for [Node.js]
|
|
|
18
18
|
|
|
19
19
|
# Features
|
|
20
20
|
|
|
21
|
-
- Bundles SQLite v3.53.
|
|
21
|
+
- Bundles SQLite v3.53.3, or you can build using a local SQLite (or SqlCipher,...)
|
|
22
22
|
- Straightforward query and parameter binding interface
|
|
23
23
|
- Full Buffer/Blob support
|
|
24
24
|
- Extensive debugging support via [verbose mode](docs/API.md#verbose-mode)
|
|
@@ -43,7 +43,7 @@ yarn add @homeofthings/sqlite3
|
|
|
43
43
|
|
|
44
44
|
### Prebuilt binaries
|
|
45
45
|
|
|
46
|
-
`@homeofthings/sqlite3` uses [Node-API](https://nodejs.org/api/n-api.html) so prebuilt binaries do not need to be built for specific Node versions. Prebuilt binaries are built as NAPI-version-agnostic (`@homeofthings+sqlite3.*.node`) using the `--napi` flag, and work on any Node.js version that supports the NAPI version used at compile time. Requires Node.js v22.
|
|
46
|
+
`@homeofthings/sqlite3` uses [Node-API](https://nodejs.org/api/n-api.html) so prebuilt binaries do not need to be built for specific Node versions. Prebuilt binaries are built as NAPI-version-agnostic (`@homeofthings+sqlite3.*.node`) using the `--napi` flag, and work on any Node.js version that supports the NAPI version used at compile time. Requires Node.js v22.22.2 or later.
|
|
47
47
|
|
|
48
48
|
Prebuilt binaries are bundled inside the npm package using [`prebuildify`](https://github.com/prebuild/prebuildify) and loaded at runtime by [`node-gyp-build`](https://github.com/prebuild/node-gyp-build). No separate download step is needed — `npm install` just works. The following targets are currently provided:
|
|
49
49
|
|
package/deps/common-sqlite.gypi
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@homeofthings/sqlite3",
|
|
3
3
|
"description": "Asynchronous, non-blocking SQLite3 bindings",
|
|
4
|
-
"version": "7.0.
|
|
4
|
+
"version": "7.0.4",
|
|
5
5
|
"homepage": "https://github.com/gms1/node-sqlite3",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Mapbox",
|
|
@@ -40,13 +40,13 @@
|
|
|
40
40
|
"url": "https://github.com/gms1/node-sqlite3.git"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"node-addon-api": "^8.
|
|
43
|
+
"node-addon-api": "^8.9.0",
|
|
44
44
|
"node-gyp-build": "^4.8.4"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@eslint/js": "^10.0.1",
|
|
48
|
-
"eslint": "^10.
|
|
49
|
-
"globals": "^17.
|
|
48
|
+
"eslint": "^10.6.0",
|
|
49
|
+
"globals": "^17.7.0",
|
|
50
50
|
"mocha": "11.7.6",
|
|
51
51
|
"nyc": "^18.0.0",
|
|
52
52
|
"prebuildify": "^6.0.1",
|
|
@@ -61,10 +61,10 @@
|
|
|
61
61
|
}
|
|
62
62
|
},
|
|
63
63
|
"optionalDependencies": {
|
|
64
|
-
"node-gyp": "
|
|
64
|
+
"node-gyp": "13.x"
|
|
65
65
|
},
|
|
66
66
|
"engines": {
|
|
67
|
-
"node": ">=22.
|
|
67
|
+
"node": ">=22.22.2"
|
|
68
68
|
},
|
|
69
69
|
"scripts": {
|
|
70
70
|
"install": "node-gyp-build",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|