@knockdata/duckdb-linux-arm64 0.0.0 → 1.5.5-r.2
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 +3 -1
- package/duckdb_napi.node +0 -0
- package/package.json +12 -3
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
1
|
# @knockdata/duckdb-linux-arm64
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
The DuckDB native addon for linux arm64.
|
|
4
|
+
|
|
5
|
+
Do not install this directly — it is an optional dependency of [@knockdata/duckdb](https://www.npmjs.com/package/@knockdata/duckdb), which npm installs only on a matching machine.
|
package/duckdb_napi.node
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knockdata/duckdb-linux-arm64",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.5.5-r.2",
|
|
4
|
+
"description": "The DuckDB native addon for linux arm64",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/knockdata/duckdb.git"
|
|
9
|
-
}
|
|
9
|
+
},
|
|
10
|
+
"os": [
|
|
11
|
+
"linux"
|
|
12
|
+
],
|
|
13
|
+
"cpu": [
|
|
14
|
+
"arm64"
|
|
15
|
+
],
|
|
16
|
+
"files": [
|
|
17
|
+
"duckdb_napi.node"
|
|
18
|
+
]
|
|
10
19
|
}
|