@haybarn/ext-gaggle-h1-5-4 202605.24.170644

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.
Files changed (2) hide show
  1. package/README.md +45 -0
  2. package/package.json +40 -0
package/README.md ADDED
@@ -0,0 +1,45 @@
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: `gaggle`
6
+
7
+ A DuckDB extension for working with Kaggle datasets
8
+
9
+ > **Source:** [https://github.com/CogitatorTech/gaggle](https://github.com/CogitatorTech/gaggle)
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-gaggle-h1-5-4
16
+ # or use the exact version:
17
+ npm install @haybarn/ext-gaggle-h1-5-4@202605.24.170644
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-gaggle-h1-5-4` (npm picks the one matching your `os`/`cpu`/`libc`):
25
+
26
+ - `@haybarn/ext-gaggle-h1-5-4-darwin-arm64`
27
+ - `@haybarn/ext-gaggle-h1-5-4-win32-x64`
28
+ - `@haybarn/ext-gaggle-h1-5-4-linux-arm64`
29
+ - `@haybarn/ext-gaggle-h1-5-4-linux-x64`
30
+
31
+ ## Use it
32
+
33
+ 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:
34
+
35
+ ```sql
36
+ LOAD gaggle;
37
+ ```
38
+
39
+ ## License
40
+
41
+ The `gaggle` extension is distributed under **MIT OR Apache-2.0**. The Haybarn engine itself is MIT-licensed.
42
+
43
+ ## Trademark
44
+
45
+ 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,40 @@
1
+ {
2
+ "name": "@haybarn/ext-gaggle-h1-5-4",
3
+ "version": "202605.24.170644",
4
+ "description": "A DuckDB extension for working with Kaggle datasets",
5
+ "homepage": "https://github.com/CogitatorTech/gaggle",
6
+ "bugs": {
7
+ "url": "https://github.com/CogitatorTech/gaggle/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/Query-farm-haybarn/haybarn-community-extensions.git"
12
+ },
13
+ "license": "MIT OR Apache-2.0",
14
+ "keywords": [
15
+ "haybarn",
16
+ "duckdb",
17
+ "extension",
18
+ "gaggle"
19
+ ],
20
+ "optionalDependencies": {
21
+ "@haybarn/ext-gaggle-h1-5-4-darwin-arm64": "202605.24.170644",
22
+ "@haybarn/ext-gaggle-h1-5-4-win32-x64": "202605.24.170644",
23
+ "@haybarn/ext-gaggle-h1-5-4-linux-arm64": "202605.24.170644",
24
+ "@haybarn/ext-gaggle-h1-5-4-linux-x64": "202605.24.170644"
25
+ },
26
+ "haybarn": {
27
+ "built_at": "2026-06-19T00:48:11Z",
28
+ "ext_commit": "bec662ceeb66f2ef88594822db900771e015f230",
29
+ "ext_version_label": "",
30
+ "extension": "gaggle",
31
+ "haybarn_version": "1.5.4",
32
+ "sha256": "see-leaf-packages-for-per-platform-sha256"
33
+ },
34
+ "files": [
35
+ "README.md"
36
+ ],
37
+ "publishConfig": {
38
+ "access": "public"
39
+ }
40
+ }