@haybarn/ext-duck_block_utils-h1-5-5 202608.10.180747
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 +63 -0
- package/package.json +41 -0
package/README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/Query-farm-haybarn/.github/haybarn/profile/assets/haybarn-icon.png" alt="Haybarn" width="120" height="120">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
# Haybarn extension: `duck_block_utils`
|
|
6
|
+
|
|
7
|
+
Build, transform, validate, and extract content from structured documents using the duck_block type
|
|
8
|
+
|
|
9
|
+
> **Source:** [https://github.com/teaguesterling/duckdb_duck_block_utils](https://github.com/teaguesterling/duckdb_duck_block_utils)
|
|
10
|
+
> **Catalog:** [Haybarn community extensions](https://github.com/Query-farm-haybarn/haybarn-community-extensions)
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
```sh
|
|
15
|
+
npm install @haybarn/ext-duck_block_utils-h1-5-5
|
|
16
|
+
# or use the exact version:
|
|
17
|
+
npm install @haybarn/ext-duck_block_utils-h1-5-5@202608.10.180747
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
npm picks the matching platform binary from the leaves below via its `os` / `cpu` / `libc` fields. No postinstall scripts, no network calls after `npm install`.
|
|
21
|
+
|
|
22
|
+
## Available platforms (this version)
|
|
23
|
+
|
|
24
|
+
Installed automatically by `npm install @haybarn/ext-duck_block_utils-h1-5-5` (npm picks the one matching your `os`/`cpu`/`libc`):
|
|
25
|
+
|
|
26
|
+
- `@haybarn/ext-duck_block_utils-h1-5-5-darwin-x64`
|
|
27
|
+
- `@haybarn/ext-duck_block_utils-h1-5-5-darwin-arm64`
|
|
28
|
+
- `@haybarn/ext-duck_block_utils-h1-5-5-win32-x64`
|
|
29
|
+
- `@haybarn/ext-duck_block_utils-h1-5-5-linux-x64`
|
|
30
|
+
- `@haybarn/ext-duck_block_utils-h1-5-5-linux-arm64`
|
|
31
|
+
|
|
32
|
+
## WebAssembly (duckdb-wasm)
|
|
33
|
+
|
|
34
|
+
Also built for [duckdb-wasm](https://github.com/duckdb/duckdb-wasm). These are **not** installed by the meta above (npm has no wasm `os`/`cpu` to match) — install the variant matching your duckdb-wasm bundle (`mvp` / `eh` / `threads`) and point duckdb-wasm at the bundled asset:
|
|
35
|
+
|
|
36
|
+
- `@haybarn/ext-duck_block_utils-h1-5-5-wasm-eh`
|
|
37
|
+
- `@haybarn/ext-duck_block_utils-h1-5-5-wasm-threads`
|
|
38
|
+
- `@haybarn/ext-duck_block_utils-h1-5-5-wasm-mvp`
|
|
39
|
+
|
|
40
|
+
```sh
|
|
41
|
+
npm install @haybarn/ext-duck_block_utils-h1-5-5-wasm-eh
|
|
42
|
+
```
|
|
43
|
+
```js
|
|
44
|
+
import extUrl from '@haybarn/ext-duck_block_utils-h1-5-5-wasm-eh/bin/duck_block_utils.duckdb_extension.wasm?url';
|
|
45
|
+
await conn.query(`INSTALL duck_block_utils FROM '${extUrl}'`);
|
|
46
|
+
await conn.query(`LOAD duck_block_utils`);
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Use it
|
|
50
|
+
|
|
51
|
+
Once installed, the `.duckdb_extension` binary lands in your project's `node_modules/` tree under the matching leaf. The [Haybarn](https://github.com/Query-farm-haybarn/haybarn) engine auto-discovers it at startup; from a Haybarn SQL session:
|
|
52
|
+
|
|
53
|
+
```sql
|
|
54
|
+
LOAD duck_block_utils;
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## License
|
|
58
|
+
|
|
59
|
+
The `duck_block_utils` extension is distributed under **MIT**. The Haybarn engine itself is MIT-licensed.
|
|
60
|
+
|
|
61
|
+
## Trademark
|
|
62
|
+
|
|
63
|
+
Haybarn is an independent derived distribution of DuckDB published by [Query Farm LLC](https://query.farm). Not affiliated with or endorsed by the DuckDB Foundation. DuckDB is a trademark of the DuckDB Foundation.
|
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@haybarn/ext-duck_block_utils-h1-5-5",
|
|
3
|
+
"version": "202608.10.180747",
|
|
4
|
+
"description": "Build, transform, validate, and extract content from structured documents using the duck_block type",
|
|
5
|
+
"homepage": "https://github.com/teaguesterling/duckdb_duck_block_utils",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/teaguesterling/duckdb_duck_block_utils/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/Query-farm-haybarn/haybarn-community-extensions.git"
|
|
12
|
+
},
|
|
13
|
+
"license": "MIT",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"haybarn",
|
|
16
|
+
"duckdb",
|
|
17
|
+
"extension",
|
|
18
|
+
"duck_block_utils"
|
|
19
|
+
],
|
|
20
|
+
"optionalDependencies": {
|
|
21
|
+
"@haybarn/ext-duck_block_utils-h1-5-5-darwin-x64": "202608.10.180747",
|
|
22
|
+
"@haybarn/ext-duck_block_utils-h1-5-5-darwin-arm64": "202608.10.180747",
|
|
23
|
+
"@haybarn/ext-duck_block_utils-h1-5-5-win32-x64": "202608.10.180747",
|
|
24
|
+
"@haybarn/ext-duck_block_utils-h1-5-5-linux-x64": "202608.10.180747",
|
|
25
|
+
"@haybarn/ext-duck_block_utils-h1-5-5-linux-arm64": "202608.10.180747"
|
|
26
|
+
},
|
|
27
|
+
"haybarn": {
|
|
28
|
+
"built_at": "2026-08-27T01:07:10Z",
|
|
29
|
+
"ext_commit": "0263b0efa01d3a05f8fc9841e1bc21fc21602aa1",
|
|
30
|
+
"ext_version_label": "",
|
|
31
|
+
"extension": "duck_block_utils",
|
|
32
|
+
"haybarn_version": "1.5.5",
|
|
33
|
+
"sha256": "see-leaf-packages-for-per-platform-sha256"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"README.md"
|
|
37
|
+
],
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
}
|
|
41
|
+
}
|