hostdb 0.25.1 → 0.26.0
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/databases.json +37 -0
- package/package.json +2 -1
package/databases.json
CHANGED
|
@@ -718,6 +718,43 @@
|
|
|
718
718
|
},
|
|
719
719
|
"spindbStatus": "completed"
|
|
720
720
|
},
|
|
721
|
+
"tigerbeetle": {
|
|
722
|
+
"displayName": "TigerBeetle",
|
|
723
|
+
"description": "High-performance financial ledger database designed for mission-critical safety and throughput",
|
|
724
|
+
"type": "Financial Ledger",
|
|
725
|
+
"sourceRepo": "https://github.com/tigerbeetle/tigerbeetle",
|
|
726
|
+
"license": "Apache-2.0",
|
|
727
|
+
"commercialUse": true,
|
|
728
|
+
"hostedServiceAllowed": true,
|
|
729
|
+
"protocol": null,
|
|
730
|
+
"note": "Written in Zig; single binary with built-in REPL client. Uses a custom binary protocol (not HTTP/SQL). macOS uses a universal (fat) binary for both x64 and arm64.",
|
|
731
|
+
"versions": {
|
|
732
|
+
"0.16.70": true
|
|
733
|
+
},
|
|
734
|
+
"platforms": [
|
|
735
|
+
"linux-x64",
|
|
736
|
+
"linux-arm64",
|
|
737
|
+
"darwin-x64",
|
|
738
|
+
"darwin-arm64",
|
|
739
|
+
"win32-x64"
|
|
740
|
+
],
|
|
741
|
+
"cliTools": {
|
|
742
|
+
"server": "tigerbeetle",
|
|
743
|
+
"client": "tigerbeetle",
|
|
744
|
+
"utilities": [],
|
|
745
|
+
"enhanced": [],
|
|
746
|
+
"note": "Single binary; use 'tigerbeetle start' for server, 'tigerbeetle repl' for client"
|
|
747
|
+
},
|
|
748
|
+
"connection": {
|
|
749
|
+
"runtime": "server",
|
|
750
|
+
"defaultPort": 3000,
|
|
751
|
+
"scheme": null,
|
|
752
|
+
"defaultDatabase": null,
|
|
753
|
+
"defaultUser": null,
|
|
754
|
+
"queryLanguage": "Custom"
|
|
755
|
+
},
|
|
756
|
+
"spindbStatus": "in-progress"
|
|
757
|
+
},
|
|
721
758
|
"typedb": {
|
|
722
759
|
"displayName": "TypeDB",
|
|
723
760
|
"description": "Strongly-typed graph database with TypeQL query language, built for knowledge representation and reasoning",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hostdb",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
4
|
"description": "Source and download pre-built database binaries for multiple platforms, distributed via GitHub Releases",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
"download:redis": "tsx builds/redis/download.ts",
|
|
49
49
|
"download:sqlite": "tsx builds/sqlite/download.ts",
|
|
50
50
|
"download:surrealdb": "tsx builds/surrealdb/download.ts",
|
|
51
|
+
"download:tigerbeetle": "tsx builds/tigerbeetle/download.ts",
|
|
51
52
|
"download:typedb": "tsx builds/typedb/download.ts",
|
|
52
53
|
"download:valkey": "tsx builds/valkey/download.ts",
|
|
53
54
|
"download:weaviate": "tsx builds/weaviate/download.ts",
|