@haybarn/ext-ducktinycc-h1-5-2 202605.18.140429

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 +43 -0
  2. package/package.json +29 -0
package/README.md ADDED
@@ -0,0 +1,43 @@
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: `ducktinycc`
6
+
7
+ DuckDB C extension for in-process JIT compiled C UDFs via TinyCC — self-contained, no external runtime required
8
+
9
+ > **Source:** [https://github.com/sounkou-bioinfo/DuckTinyCC](https://github.com/sounkou-bioinfo/DuckTinyCC)
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-ducktinycc-h1-5-2
16
+ # or pin to a specific build:
17
+ npm install @haybarn/ext-ducktinycc-h1-5-2@202605.18.140429
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
+ - `@haybarn/ext-ducktinycc-h1-5-2-linux-x64`
25
+ - `@haybarn/ext-ducktinycc-h1-5-2-linux-arm64`
26
+ - `@haybarn/ext-ducktinycc-h1-5-2-darwin-x64`
27
+ - `@haybarn/ext-ducktinycc-h1-5-2-darwin-arm64`
28
+
29
+ ## Use it
30
+
31
+ 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:
32
+
33
+ ```sql
34
+ LOAD ducktinycc;
35
+ ```
36
+
37
+ ## License
38
+
39
+ The `ducktinycc` extension is distributed under **MIT**. The Haybarn engine itself is MIT-licensed.
40
+
41
+ ## Trademark
42
+
43
+ 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,29 @@
1
+ {
2
+ "name": "@haybarn/ext-ducktinycc-h1-5-2",
3
+ "version": "202605.18.140429",
4
+ "description": "DuckDB C extension for in-process JIT compiled C UDFs via TinyCC \u2014 self-contained, no external runtime required",
5
+ "homepage": "https://github.com/Query-farm-haybarn/haybarn-community-extensions",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Query-farm-haybarn/haybarn-community-extensions.git"
9
+ },
10
+ "license": "MIT",
11
+ "keywords": [
12
+ "haybarn",
13
+ "duckdb",
14
+ "extension",
15
+ "ducktinycc"
16
+ ],
17
+ "optionalDependencies": {
18
+ "@haybarn/ext-ducktinycc-h1-5-2-linux-x64": "202605.18.140429",
19
+ "@haybarn/ext-ducktinycc-h1-5-2-linux-arm64": "202605.18.140429",
20
+ "@haybarn/ext-ducktinycc-h1-5-2-darwin-x64": "202605.18.140429",
21
+ "@haybarn/ext-ducktinycc-h1-5-2-darwin-arm64": "202605.18.140429"
22
+ },
23
+ "files": [
24
+ "README.md"
25
+ ],
26
+ "publishConfig": {
27
+ "access": "public"
28
+ }
29
+ }