hostdb 0.10.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/downloads.json ADDED
@@ -0,0 +1,1766 @@
1
+ {
2
+ "$schema": "./schemas/downloads.schema.json",
3
+ "packageManagers": {
4
+ "brew": {
5
+ "name": "Homebrew",
6
+ "platforms": ["darwin-arm64", "darwin-x64", "linux-x64", "linux-arm64"],
7
+ "installCmd": "brew install {package}",
8
+ "tapCmd": "brew tap {tap}",
9
+ "checkCmd": "brew --version"
10
+ },
11
+ "apt": {
12
+ "name": "APT",
13
+ "platforms": ["linux-x64", "linux-arm64"],
14
+ "installCmd": "sudo apt-get install -y {package}",
15
+ "checkCmd": "apt-get --version"
16
+ },
17
+ "yum": {
18
+ "name": "YUM",
19
+ "platforms": ["linux-x64", "linux-arm64"],
20
+ "installCmd": "sudo yum install -y {package}",
21
+ "checkCmd": "yum --version"
22
+ },
23
+ "dnf": {
24
+ "name": "DNF",
25
+ "platforms": ["linux-x64", "linux-arm64"],
26
+ "installCmd": "sudo dnf install -y {package}",
27
+ "checkCmd": "dnf --version"
28
+ },
29
+ "pacman": {
30
+ "name": "Pacman",
31
+ "platforms": ["linux-x64", "linux-arm64"],
32
+ "installCmd": "sudo pacman -S --noconfirm {package}",
33
+ "checkCmd": "pacman --version"
34
+ },
35
+ "apk": {
36
+ "name": "APK",
37
+ "platforms": ["linux-x64", "linux-arm64"],
38
+ "installCmd": "apk add {package}",
39
+ "checkCmd": "apk --version"
40
+ },
41
+ "choco": {
42
+ "name": "Chocolatey",
43
+ "platforms": ["win32-x64"],
44
+ "installCmd": "choco install -y {package}",
45
+ "checkCmd": "choco --version"
46
+ },
47
+ "winget": {
48
+ "name": "Windows Package Manager",
49
+ "platforms": ["win32-x64"],
50
+ "installCmd": "winget install {package}",
51
+ "checkCmd": "winget --version"
52
+ },
53
+ "scoop": {
54
+ "name": "Scoop",
55
+ "platforms": ["win32-x64"],
56
+ "installCmd": "scoop install {package}",
57
+ "checkCmd": "scoop --version"
58
+ },
59
+ "pip": {
60
+ "name": "pip",
61
+ "platforms": [
62
+ "darwin-arm64",
63
+ "darwin-x64",
64
+ "linux-x64",
65
+ "linux-arm64",
66
+ "win32-x64"
67
+ ],
68
+ "installCmd": "pip install {package}",
69
+ "checkCmd": "pip --version"
70
+ },
71
+ "pipx": {
72
+ "name": "pipx",
73
+ "platforms": [
74
+ "darwin-arm64",
75
+ "darwin-x64",
76
+ "linux-x64",
77
+ "linux-arm64",
78
+ "win32-x64"
79
+ ],
80
+ "installCmd": "pipx install {package}",
81
+ "checkCmd": "pipx --version"
82
+ },
83
+ "npm": {
84
+ "name": "npm",
85
+ "platforms": [
86
+ "darwin-arm64",
87
+ "darwin-x64",
88
+ "linux-x64",
89
+ "linux-arm64",
90
+ "win32-x64"
91
+ ],
92
+ "installCmd": "npm install -g {package}",
93
+ "checkCmd": "npm --version"
94
+ },
95
+ "cargo": {
96
+ "name": "Cargo",
97
+ "platforms": [
98
+ "darwin-arm64",
99
+ "darwin-x64",
100
+ "linux-x64",
101
+ "linux-arm64",
102
+ "win32-x64"
103
+ ],
104
+ "installCmd": "cargo install {package}",
105
+ "checkCmd": "cargo --version"
106
+ },
107
+ "go": {
108
+ "name": "Go",
109
+ "platforms": [
110
+ "darwin-arm64",
111
+ "darwin-x64",
112
+ "linux-x64",
113
+ "linux-arm64",
114
+ "win32-x64"
115
+ ],
116
+ "installCmd": "go install {package}",
117
+ "checkCmd": "go version"
118
+ }
119
+ },
120
+ "items": {
121
+ "erlang": {
122
+ "name": "Erlang/OTP",
123
+ "description": "Programming language for concurrent, fault-tolerant systems",
124
+ "type": "prerequisite",
125
+ "packages": {
126
+ "brew": { "package": "erlang" },
127
+ "apt": { "package": "erlang" },
128
+ "yum": { "package": "erlang" },
129
+ "dnf": { "package": "erlang" },
130
+ "choco": { "package": "erlang" },
131
+ "winget": { "package": "Erlang.ErlangOTP" }
132
+ },
133
+ "binaries": {
134
+ "linux-x64": {
135
+ "url": "https://github.com/erlang/otp/releases/download/OTP-27.2/otp_src_27.2.tar.gz",
136
+ "format": "tar.gz"
137
+ },
138
+ "darwin-x64": {
139
+ "url": "https://github.com/erlang/otp/releases/download/OTP-27.2/otp_src_27.2.tar.gz",
140
+ "format": "tar.gz"
141
+ },
142
+ "darwin-arm64": {
143
+ "url": "https://github.com/erlang/otp/releases/download/OTP-27.2/otp_src_27.2.tar.gz",
144
+ "format": "tar.gz"
145
+ },
146
+ "win32-x64": {
147
+ "url": "https://github.com/erlang/otp/releases/download/OTP-27.2/otp_win64_27.2.exe",
148
+ "format": "binary"
149
+ }
150
+ },
151
+ "requires": []
152
+ },
153
+ "jre": {
154
+ "name": "Java Runtime Environment",
155
+ "description": "Java runtime for running Java applications",
156
+ "type": "prerequisite",
157
+ "packages": {
158
+ "brew": { "package": "openjdk" },
159
+ "apt": { "package": "default-jre" },
160
+ "yum": { "package": "java-21-openjdk" },
161
+ "dnf": { "package": "java-21-openjdk" },
162
+ "choco": { "package": "openjdk" },
163
+ "winget": { "package": "Microsoft.OpenJDK.21" }
164
+ },
165
+ "binaries": {
166
+ "linux-x64": {
167
+ "url": "https://download.java.net/java/GA/jdk21.0.2/f2283984656d49d69e91c558476027ac/13/GPL/openjdk-21.0.2_linux-x64_bin.tar.gz",
168
+ "format": "tar.gz"
169
+ },
170
+ "linux-arm64": {
171
+ "url": "https://download.java.net/java/GA/jdk21.0.2/f2283984656d49d69e91c558476027ac/13/GPL/openjdk-21.0.2_linux-aarch64_bin.tar.gz",
172
+ "format": "tar.gz"
173
+ },
174
+ "darwin-x64": {
175
+ "url": "https://download.java.net/java/GA/jdk21.0.2/f2283984656d49d69e91c558476027ac/13/GPL/openjdk-21.0.2_macos-x64_bin.tar.gz",
176
+ "format": "tar.gz"
177
+ },
178
+ "darwin-arm64": {
179
+ "url": "https://download.java.net/java/GA/jdk21.0.2/f2283984656d49d69e91c558476027ac/13/GPL/openjdk-21.0.2_macos-aarch64_bin.tar.gz",
180
+ "format": "tar.gz"
181
+ },
182
+ "win32-x64": {
183
+ "url": "https://download.java.net/java/GA/jdk21.0.2/f2283984656d49d69e91c558476027ac/13/GPL/openjdk-21.0.2_windows-x64_bin.zip",
184
+ "format": "zip"
185
+ }
186
+ },
187
+ "requires": []
188
+ },
189
+ "python": {
190
+ "name": "Python",
191
+ "description": "Python programming language runtime",
192
+ "type": "prerequisite",
193
+ "packages": {
194
+ "brew": { "package": "python@3.12" },
195
+ "apt": { "package": "python3" },
196
+ "yum": { "package": "python3" },
197
+ "dnf": { "package": "python3" },
198
+ "choco": { "package": "python" },
199
+ "winget": { "package": "Python.Python.3.12" }
200
+ },
201
+ "binaries": {
202
+ "linux-x64": {
203
+ "url": "https://www.python.org/ftp/python/3.12.8/Python-3.12.8.tar.xz",
204
+ "format": "tar.xz"
205
+ },
206
+ "darwin-x64": {
207
+ "url": "https://www.python.org/ftp/python/3.12.8/python-3.12.8-macos11.pkg",
208
+ "format": "pkg"
209
+ },
210
+ "darwin-arm64": {
211
+ "url": "https://www.python.org/ftp/python/3.12.8/python-3.12.8-macos11.pkg",
212
+ "format": "pkg"
213
+ },
214
+ "win32-x64": {
215
+ "url": "https://www.python.org/ftp/python/3.12.8/python-3.12.8-amd64.exe",
216
+ "format": "binary"
217
+ }
218
+ },
219
+ "requires": []
220
+ },
221
+ "rust": {
222
+ "name": "Rust",
223
+ "description": "Rust programming language and cargo package manager",
224
+ "type": "prerequisite",
225
+ "packages": {
226
+ "brew": { "package": "rust" },
227
+ "apt": { "package": "rustc" },
228
+ "dnf": { "package": "rust" },
229
+ "choco": { "package": "rust" },
230
+ "winget": { "package": "Rustlang.Rust.GNU" }
231
+ },
232
+ "binaries": {},
233
+ "requires": [],
234
+ "notes": "Recommended: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh"
235
+ },
236
+ "go": {
237
+ "name": "Go",
238
+ "description": "Go programming language runtime",
239
+ "type": "prerequisite",
240
+ "packages": {
241
+ "brew": { "package": "go" },
242
+ "apt": { "package": "golang" },
243
+ "yum": { "package": "golang" },
244
+ "dnf": { "package": "golang" },
245
+ "choco": { "package": "golang" },
246
+ "winget": { "package": "GoLang.Go" }
247
+ },
248
+ "binaries": {
249
+ "linux-x64": {
250
+ "url": "https://go.dev/dl/go1.23.4.linux-amd64.tar.gz",
251
+ "format": "tar.gz"
252
+ },
253
+ "linux-arm64": {
254
+ "url": "https://go.dev/dl/go1.23.4.linux-arm64.tar.gz",
255
+ "format": "tar.gz"
256
+ },
257
+ "darwin-x64": {
258
+ "url": "https://go.dev/dl/go1.23.4.darwin-amd64.tar.gz",
259
+ "format": "tar.gz"
260
+ },
261
+ "darwin-arm64": {
262
+ "url": "https://go.dev/dl/go1.23.4.darwin-arm64.tar.gz",
263
+ "format": "tar.gz"
264
+ },
265
+ "win32-x64": {
266
+ "url": "https://go.dev/dl/go1.23.4.windows-amd64.zip",
267
+ "format": "zip"
268
+ }
269
+ },
270
+ "requires": []
271
+ },
272
+ "node": {
273
+ "name": "Node.js",
274
+ "description": "JavaScript runtime built on Chrome's V8 engine",
275
+ "type": "prerequisite",
276
+ "packages": {
277
+ "brew": { "package": "node" },
278
+ "apt": { "package": "nodejs" },
279
+ "yum": { "package": "nodejs" },
280
+ "dnf": { "package": "nodejs" },
281
+ "choco": { "package": "nodejs" },
282
+ "winget": { "package": "OpenJS.NodeJS" }
283
+ },
284
+ "binaries": {
285
+ "linux-x64": {
286
+ "url": "https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-x64.tar.xz",
287
+ "format": "tar.xz"
288
+ },
289
+ "linux-arm64": {
290
+ "url": "https://nodejs.org/dist/v22.12.0/node-v22.12.0-linux-arm64.tar.xz",
291
+ "format": "tar.xz"
292
+ },
293
+ "darwin-x64": {
294
+ "url": "https://nodejs.org/dist/v22.12.0/node-v22.12.0-darwin-x64.tar.gz",
295
+ "format": "tar.gz"
296
+ },
297
+ "darwin-arm64": {
298
+ "url": "https://nodejs.org/dist/v22.12.0/node-v22.12.0-darwin-arm64.tar.gz",
299
+ "format": "tar.gz"
300
+ },
301
+ "win32-x64": {
302
+ "url": "https://nodejs.org/dist/v22.12.0/node-v22.12.0-win-x64.zip",
303
+ "format": "zip"
304
+ }
305
+ },
306
+ "requires": []
307
+ },
308
+ "build-essential": {
309
+ "name": "Build Tools",
310
+ "description": "C/C++ compiler and build tools (gcc, make, etc.)",
311
+ "type": "prerequisite",
312
+ "packages": {
313
+ "brew": { "package": "gcc" },
314
+ "apt": { "package": "build-essential" },
315
+ "yum": { "package": "gcc" },
316
+ "dnf": { "package": "gcc" },
317
+ "apk": { "package": "build-base" }
318
+ },
319
+ "binaries": {},
320
+ "requires": [],
321
+ "notes": "macOS: Install Xcode Command Line Tools with 'xcode-select --install'. Windows: Install Visual Studio Build Tools."
322
+ },
323
+ "apache-cassandra": {
324
+ "name": "Apache Cassandra",
325
+ "description": "Distributed NoSQL database for high availability",
326
+ "type": "database",
327
+ "packages": {
328
+ "brew": { "package": "cassandra" },
329
+ "apt": { "package": "cassandra" },
330
+ "yum": { "package": "cassandra" }
331
+ },
332
+ "binaries": {
333
+ "linux-x64": {
334
+ "url": "https://archive.apache.org/dist/cassandra/5.0.6/apache-cassandra-5.0.6-bin.tar.gz",
335
+ "format": "tar.gz"
336
+ },
337
+ "linux-arm64": {
338
+ "url": "https://archive.apache.org/dist/cassandra/5.0.6/apache-cassandra-5.0.6-bin.tar.gz",
339
+ "format": "tar.gz"
340
+ },
341
+ "darwin-x64": {
342
+ "url": "https://archive.apache.org/dist/cassandra/5.0.6/apache-cassandra-5.0.6-bin.tar.gz",
343
+ "format": "tar.gz"
344
+ },
345
+ "darwin-arm64": {
346
+ "url": "https://archive.apache.org/dist/cassandra/5.0.6/apache-cassandra-5.0.6-bin.tar.gz",
347
+ "format": "tar.gz"
348
+ },
349
+ "win32-x64": {
350
+ "url": "https://archive.apache.org/dist/cassandra/5.0.6/apache-cassandra-5.0.6-bin.tar.gz",
351
+ "format": "tar.gz"
352
+ }
353
+ },
354
+ "docker": {
355
+ "image": "cassandra",
356
+ "tag": "5.0"
357
+ },
358
+ "requires": ["jre"],
359
+ "notes": "Java-based; requires JRE 11+ or JDK 17+"
360
+ },
361
+ "arangodb": {
362
+ "name": "ArangoDB",
363
+ "description": "Multi-model database for graphs, documents, and key-value",
364
+ "type": "database",
365
+ "packages": {
366
+ "brew": { "package": "arangodb" },
367
+ "apt": {
368
+ "package": "arangodb3",
369
+ "repo": "https://download.arangodb.com/arangodb312/DEBIAN"
370
+ },
371
+ "yum": {
372
+ "package": "arangodb3",
373
+ "repo": "https://download.arangodb.com/arangodb312/RPM"
374
+ },
375
+ "choco": { "package": "arangodb" }
376
+ },
377
+ "binaries": {
378
+ "linux-x64": {
379
+ "url": "https://download.arangodb.com/arangodb312/Community/Linux/arangodb3-linux-3.12.4.tar.gz",
380
+ "format": "tar.gz"
381
+ },
382
+ "linux-arm64": {
383
+ "url": "https://download.arangodb.com/arangodb312/Community/Linux/arangodb3-linux-arm64-3.12.4.tar.gz",
384
+ "format": "tar.gz"
385
+ },
386
+ "darwin-x64": {
387
+ "url": "https://download.arangodb.com/arangodb312/Community/MacOSX/arangodb3-macos-x86_64-3.12.4.tar.gz",
388
+ "format": "tar.gz"
389
+ },
390
+ "darwin-arm64": {
391
+ "url": "https://download.arangodb.com/arangodb312/Community/MacOSX/arangodb3-macos-arm64-3.12.4.tar.gz",
392
+ "format": "tar.gz"
393
+ },
394
+ "win32-x64": {
395
+ "url": "https://download.arangodb.com/arangodb312/Community/Windows/ArangoDB3-3.12.4_win64.zip",
396
+ "format": "zip"
397
+ }
398
+ },
399
+ "docker": {
400
+ "image": "arangodb/arangodb",
401
+ "tag": "3.12.4"
402
+ },
403
+ "requires": []
404
+ },
405
+ "clickhouse": {
406
+ "name": "ClickHouse",
407
+ "description": "Column-oriented OLAP database for real-time analytics",
408
+ "type": "database",
409
+ "packages": {
410
+ "brew": { "package": "clickhouse" },
411
+ "apt": {
412
+ "package": "clickhouse-server",
413
+ "repo": "https://packages.clickhouse.com/deb"
414
+ },
415
+ "yum": {
416
+ "package": "clickhouse-server",
417
+ "repo": "https://packages.clickhouse.com/rpm/clickhouse.repo"
418
+ }
419
+ },
420
+ "binaries": {
421
+ "linux-x64": {
422
+ "url": "https://github.com/ClickHouse/ClickHouse/releases/download/v24.8.8.17-lts/clickhouse-common-static-24.8.8.17-amd64.tgz",
423
+ "format": "tar.gz"
424
+ },
425
+ "linux-arm64": {
426
+ "url": "https://github.com/ClickHouse/ClickHouse/releases/download/v24.8.8.17-lts/clickhouse-common-static-24.8.8.17-arm64.tgz",
427
+ "format": "tar.gz"
428
+ },
429
+ "darwin-x64": {
430
+ "url": "https://github.com/ClickHouse/ClickHouse/releases/download/v24.8.8.17-lts/clickhouse-macos-x86_64",
431
+ "format": "binary"
432
+ },
433
+ "darwin-arm64": {
434
+ "url": "https://github.com/ClickHouse/ClickHouse/releases/download/v24.8.8.17-lts/clickhouse-macos-aarch64",
435
+ "format": "binary"
436
+ }
437
+ },
438
+ "docker": {
439
+ "image": "clickhouse/clickhouse-server",
440
+ "tag": "24.8.8.17-lts"
441
+ },
442
+ "requires": [],
443
+ "notes": "No native Windows support"
444
+ },
445
+ "cockroachdb": {
446
+ "name": "CockroachDB",
447
+ "description": "Distributed SQL database with PostgreSQL compatibility",
448
+ "type": "database",
449
+ "packages": {
450
+ "brew": { "package": "cockroachdb/tap/cockroach" }
451
+ },
452
+ "binaries": {
453
+ "linux-x64": {
454
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.linux-amd64.tgz",
455
+ "format": "tar.gz"
456
+ },
457
+ "linux-arm64": {
458
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.linux-arm64.tgz",
459
+ "format": "tar.gz"
460
+ },
461
+ "darwin-x64": {
462
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.darwin-10.9-amd64.tgz",
463
+ "format": "tar.gz"
464
+ },
465
+ "darwin-arm64": {
466
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.darwin-11.0-arm64.tgz",
467
+ "format": "tar.gz"
468
+ },
469
+ "win32-x64": {
470
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.windows-6.2-amd64.zip",
471
+ "format": "zip"
472
+ }
473
+ },
474
+ "docker": {
475
+ "image": "cockroachdb/cockroach",
476
+ "tag": "v25.4.2"
477
+ },
478
+ "requires": [],
479
+ "notes": "Single binary for server, client, and utilities"
480
+ },
481
+ "couchdb": {
482
+ "name": "CouchDB",
483
+ "description": "Document-oriented NoSQL database with HTTP API",
484
+ "type": "database",
485
+ "packages": {
486
+ "brew": { "package": "couchdb" },
487
+ "apt": {
488
+ "package": "couchdb",
489
+ "repo": "https://apache.jfrog.io/artifactory/couchdb-deb"
490
+ },
491
+ "yum": {
492
+ "package": "couchdb",
493
+ "repo": "https://apache.jfrog.io/artifactory/couchdb-rpm"
494
+ },
495
+ "choco": { "package": "couchdb" }
496
+ },
497
+ "binaries": {
498
+ "linux-x64": {
499
+ "url": "https://dlcdn.apache.org/couchdb/source/3.4.2/apache-couchdb-3.4.2.tar.gz",
500
+ "format": "tar.gz"
501
+ },
502
+ "darwin-x64": {
503
+ "url": "https://dlcdn.apache.org/couchdb/source/3.4.2/apache-couchdb-3.4.2.tar.gz",
504
+ "format": "tar.gz"
505
+ },
506
+ "darwin-arm64": {
507
+ "url": "https://dlcdn.apache.org/couchdb/source/3.4.2/apache-couchdb-3.4.2.tar.gz",
508
+ "format": "tar.gz"
509
+ },
510
+ "win32-x64": {
511
+ "url": "https://dlcdn.apache.org/couchdb/binary/win/3.4.2/apache-couchdb-3.4.2.msi",
512
+ "format": "msi"
513
+ }
514
+ },
515
+ "docker": {
516
+ "image": "couchdb",
517
+ "tag": "3.4.2"
518
+ },
519
+ "requires": ["erlang"],
520
+ "notes": "Source builds require Erlang; Windows MSI includes bundled Erlang"
521
+ },
522
+ "duckdb": {
523
+ "name": "DuckDB",
524
+ "description": "In-process analytical database",
525
+ "type": "database",
526
+ "packages": {
527
+ "brew": { "package": "duckdb" },
528
+ "choco": { "package": "duckdb" },
529
+ "winget": { "package": "DuckDB.cli" },
530
+ "pip": { "package": "duckdb" }
531
+ },
532
+ "binaries": {
533
+ "linux-x64": {
534
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-linux-amd64.zip",
535
+ "format": "zip"
536
+ },
537
+ "linux-arm64": {
538
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-linux-aarch64.zip",
539
+ "format": "zip"
540
+ },
541
+ "darwin-x64": {
542
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-osx-universal.zip",
543
+ "format": "zip"
544
+ },
545
+ "darwin-arm64": {
546
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-osx-universal.zip",
547
+ "format": "zip"
548
+ },
549
+ "win32-x64": {
550
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-windows-amd64.zip",
551
+ "format": "zip"
552
+ }
553
+ },
554
+ "requires": []
555
+ },
556
+ "ferretdb": {
557
+ "name": "FerretDB",
558
+ "description": "MongoDB-compatible database on PostgreSQL",
559
+ "type": "database",
560
+ "packages": {
561
+ "brew": { "package": "ferretdb/tap/ferretdb" }
562
+ },
563
+ "binaries": {
564
+ "linux-x64": {
565
+ "url": "https://github.com/FerretDB/FerretDB/releases/download/v1.24.0/ferretdb-linux-amd64",
566
+ "format": "binary"
567
+ },
568
+ "linux-arm64": {
569
+ "url": "https://github.com/FerretDB/FerretDB/releases/download/v1.24.0/ferretdb-linux-arm64",
570
+ "format": "binary"
571
+ },
572
+ "darwin-x64": {
573
+ "url": "https://github.com/FerretDB/FerretDB/releases/download/v1.24.0/ferretdb-darwin-amd64",
574
+ "format": "binary"
575
+ },
576
+ "darwin-arm64": {
577
+ "url": "https://github.com/FerretDB/FerretDB/releases/download/v1.24.0/ferretdb-darwin-arm64",
578
+ "format": "binary"
579
+ },
580
+ "win32-x64": {
581
+ "url": "https://github.com/FerretDB/FerretDB/releases/download/v1.24.0/ferretdb-windows-amd64.exe",
582
+ "format": "binary"
583
+ }
584
+ },
585
+ "docker": {
586
+ "image": "ferretdb/ferretdb",
587
+ "tag": "1.24.0"
588
+ },
589
+ "requires": []
590
+ },
591
+ "foundationdb": {
592
+ "name": "FoundationDB",
593
+ "description": "Distributed key-value store with ACID transactions",
594
+ "type": "database",
595
+ "packages": {
596
+ "brew": { "package": "foundationdb" }
597
+ },
598
+ "binaries": {
599
+ "linux-x64": {
600
+ "url": "https://github.com/apple/foundationdb/releases/download/7.3.43/foundationdb-clients_7.3.43-1_amd64.deb",
601
+ "format": "deb"
602
+ },
603
+ "linux-arm64": {
604
+ "url": "https://github.com/apple/foundationdb/releases/download/7.3.43/foundationdb-clients_7.3.43-1_arm64.deb",
605
+ "format": "deb"
606
+ },
607
+ "darwin-x64": {
608
+ "url": "https://github.com/apple/foundationdb/releases/download/7.3.43/FoundationDB-7.3.43_x86_64.pkg",
609
+ "format": "pkg"
610
+ },
611
+ "darwin-arm64": {
612
+ "url": "https://github.com/apple/foundationdb/releases/download/7.3.43/FoundationDB-7.3.43_arm64.pkg",
613
+ "format": "pkg"
614
+ },
615
+ "win32-x64": {
616
+ "url": "https://github.com/apple/foundationdb/releases/download/7.3.43/foundationdb-7.3.43-x64.msi",
617
+ "format": "msi"
618
+ }
619
+ },
620
+ "requires": []
621
+ },
622
+ "influxdb": {
623
+ "name": "InfluxDB",
624
+ "description": "Time-series database for metrics and events",
625
+ "type": "database",
626
+ "packages": {
627
+ "brew": { "package": "influxdb" },
628
+ "apt": {
629
+ "package": "influxdb2",
630
+ "repo": "https://repos.influxdata.com/debian"
631
+ },
632
+ "yum": {
633
+ "package": "influxdb2",
634
+ "repo": "https://repos.influxdata.com/rhel"
635
+ },
636
+ "choco": { "package": "influxdb" }
637
+ },
638
+ "binaries": {
639
+ "linux-x64": {
640
+ "url": "https://download.influxdata.com/influxdb/releases/influxdb2-2.7.10-linux-amd64.tar.gz",
641
+ "format": "tar.gz"
642
+ },
643
+ "linux-arm64": {
644
+ "url": "https://download.influxdata.com/influxdb/releases/influxdb2-2.7.10-linux-arm64.tar.gz",
645
+ "format": "tar.gz"
646
+ },
647
+ "darwin-x64": {
648
+ "url": "https://download.influxdata.com/influxdb/releases/influxdb2-2.7.10-darwin-amd64.tar.gz",
649
+ "format": "tar.gz"
650
+ },
651
+ "darwin-arm64": {
652
+ "url": "https://download.influxdata.com/influxdb/releases/influxdb2-2.7.10-darwin-arm64.tar.gz",
653
+ "format": "tar.gz"
654
+ },
655
+ "win32-x64": {
656
+ "url": "https://download.influxdata.com/influxdb/releases/influxdb2-2.7.10-windows.zip",
657
+ "format": "zip"
658
+ }
659
+ },
660
+ "docker": {
661
+ "image": "influxdb",
662
+ "tag": "2.7.10"
663
+ },
664
+ "requires": []
665
+ },
666
+ "keydb": {
667
+ "name": "KeyDB",
668
+ "description": "High-performance Redis-compatible key-value store",
669
+ "type": "database",
670
+ "packages": {
671
+ "apt": {
672
+ "package": "keydb",
673
+ "repo": "https://download.keydb.dev/open-source-dist"
674
+ }
675
+ },
676
+ "binaries": {
677
+ "linux-x64": {
678
+ "url": "https://github.com/Snapchat/KeyDB/releases/download/v6.3.4/keydb-v6.3.4-x86_64-linux-gnu.tar.gz",
679
+ "format": "tar.gz"
680
+ },
681
+ "linux-arm64": {
682
+ "url": "https://github.com/Snapchat/KeyDB/releases/download/v6.3.4/keydb-v6.3.4-aarch64-linux-gnu.tar.gz",
683
+ "format": "tar.gz"
684
+ }
685
+ },
686
+ "docker": {
687
+ "image": "eqalpha/keydb",
688
+ "tag": "latest"
689
+ },
690
+ "requires": ["build-essential"],
691
+ "notes": "macOS/Windows require building from source"
692
+ },
693
+ "libsql": {
694
+ "name": "libSQL",
695
+ "description": "SQLite fork with server mode and replication",
696
+ "type": "database",
697
+ "packages": {
698
+ "brew": { "package": "libsql/sqld/sqld" }
699
+ },
700
+ "binaries": {
701
+ "linux-x64": {
702
+ "url": "https://github.com/tursodatabase/libsql/releases/download/libsql-server-v0.24.27/libsql-server-x86_64-unknown-linux-gnu.tar.xz",
703
+ "format": "tar.xz"
704
+ },
705
+ "linux-arm64": {
706
+ "url": "https://github.com/tursodatabase/libsql/releases/download/libsql-server-v0.24.27/libsql-server-aarch64-unknown-linux-gnu.tar.xz",
707
+ "format": "tar.xz"
708
+ },
709
+ "darwin-x64": {
710
+ "url": "https://github.com/tursodatabase/libsql/releases/download/libsql-server-v0.24.27/libsql-server-x86_64-apple-darwin.tar.xz",
711
+ "format": "tar.xz"
712
+ },
713
+ "darwin-arm64": {
714
+ "url": "https://github.com/tursodatabase/libsql/releases/download/libsql-server-v0.24.27/libsql-server-aarch64-apple-darwin.tar.xz",
715
+ "format": "tar.xz"
716
+ }
717
+ },
718
+ "docker": {
719
+ "image": "ghcr.io/tursodatabase/libsql-server",
720
+ "tag": "latest"
721
+ },
722
+ "requires": []
723
+ },
724
+ "mariadb": {
725
+ "name": "MariaDB",
726
+ "description": "Community-developed MySQL fork",
727
+ "type": "database",
728
+ "packages": {
729
+ "brew": { "package": "mariadb" },
730
+ "apt": { "package": "mariadb-server" },
731
+ "yum": { "package": "mariadb-server" },
732
+ "dnf": { "package": "mariadb-server" },
733
+ "choco": { "package": "mariadb" },
734
+ "winget": { "package": "MariaDB.Server" }
735
+ },
736
+ "binaries": {
737
+ "linux-x64": {
738
+ "url": "https://archive.mariadb.org/mariadb-11.4.4/bintar-linux-systemd-x86_64/mariadb-11.4.4-linux-systemd-x86_64.tar.gz",
739
+ "format": "tar.gz"
740
+ },
741
+ "linux-arm64": {
742
+ "url": "https://archive.mariadb.org/mariadb-11.4.4/bintar-linux-systemd-aarch64/mariadb-11.4.4-linux-systemd-aarch64.tar.gz",
743
+ "format": "tar.gz"
744
+ },
745
+ "darwin-x64": {
746
+ "url": "https://archive.mariadb.org/mariadb-11.4.4/bintar-darwin-x86_64/mariadb-11.4.4-darwin-x86_64.tar.gz",
747
+ "format": "tar.gz"
748
+ },
749
+ "darwin-arm64": {
750
+ "url": "https://archive.mariadb.org/mariadb-11.4.4/bintar-darwin-arm64/mariadb-11.4.4-darwin-arm64.tar.gz",
751
+ "format": "tar.gz"
752
+ },
753
+ "win32-x64": {
754
+ "url": "https://archive.mariadb.org/mariadb-11.4.4/winx64-packages/mariadb-11.4.4-winx64.zip",
755
+ "format": "zip"
756
+ }
757
+ },
758
+ "docker": {
759
+ "image": "mariadb",
760
+ "tag": "11.4.4"
761
+ },
762
+ "requires": []
763
+ },
764
+ "meilisearch": {
765
+ "name": "Meilisearch",
766
+ "description": "Fast, typo-tolerant search engine",
767
+ "type": "database",
768
+ "packages": {
769
+ "brew": { "package": "meilisearch" },
770
+ "apt": {
771
+ "package": "meilisearch",
772
+ "repo": "https://apt.fury.io/meilisearch"
773
+ },
774
+ "choco": { "package": "meilisearch" }
775
+ },
776
+ "binaries": {
777
+ "linux-x64": {
778
+ "url": "https://github.com/meilisearch/meilisearch/releases/download/v1.11.3/meilisearch-linux-amd64",
779
+ "format": "binary"
780
+ },
781
+ "linux-arm64": {
782
+ "url": "https://github.com/meilisearch/meilisearch/releases/download/v1.11.3/meilisearch-linux-aarch64",
783
+ "format": "binary"
784
+ },
785
+ "darwin-x64": {
786
+ "url": "https://github.com/meilisearch/meilisearch/releases/download/v1.11.3/meilisearch-macos-amd64",
787
+ "format": "binary"
788
+ },
789
+ "darwin-arm64": {
790
+ "url": "https://github.com/meilisearch/meilisearch/releases/download/v1.11.3/meilisearch-macos-apple-silicon",
791
+ "format": "binary"
792
+ },
793
+ "win32-x64": {
794
+ "url": "https://github.com/meilisearch/meilisearch/releases/download/v1.11.3/meilisearch-windows-amd64.exe",
795
+ "format": "binary"
796
+ }
797
+ },
798
+ "docker": {
799
+ "image": "getmeili/meilisearch",
800
+ "tag": "v1.11.3"
801
+ },
802
+ "requires": []
803
+ },
804
+ "mongodb": {
805
+ "name": "MongoDB",
806
+ "description": "Document-oriented NoSQL database",
807
+ "type": "database",
808
+ "packages": {
809
+ "brew": { "package": "mongodb-community", "tap": "mongodb/brew" },
810
+ "apt": {
811
+ "package": "mongodb-org",
812
+ "repo": "https://repo.mongodb.org/apt/ubuntu"
813
+ },
814
+ "yum": {
815
+ "package": "mongodb-org",
816
+ "repo": "https://repo.mongodb.org/yum/redhat"
817
+ },
818
+ "choco": { "package": "mongodb" },
819
+ "winget": { "package": "MongoDB.Server" }
820
+ },
821
+ "binaries": {
822
+ "linux-x64": {
823
+ "url": "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-8.0.4.tgz",
824
+ "format": "tar.gz"
825
+ },
826
+ "linux-arm64": {
827
+ "url": "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-8.0.4.tgz",
828
+ "format": "tar.gz"
829
+ },
830
+ "darwin-x64": {
831
+ "url": "https://fastdl.mongodb.org/osx/mongodb-macos-x86_64-8.0.4.tgz",
832
+ "format": "tar.gz"
833
+ },
834
+ "darwin-arm64": {
835
+ "url": "https://fastdl.mongodb.org/osx/mongodb-macos-arm64-8.0.4.tgz",
836
+ "format": "tar.gz"
837
+ },
838
+ "win32-x64": {
839
+ "url": "https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-8.0.4.zip",
840
+ "format": "zip"
841
+ }
842
+ },
843
+ "docker": {
844
+ "image": "mongo",
845
+ "tag": "8.0.4"
846
+ },
847
+ "requires": []
848
+ },
849
+ "mysql": {
850
+ "name": "MySQL",
851
+ "description": "Popular open-source relational database",
852
+ "type": "database",
853
+ "packages": {
854
+ "brew": { "package": "mysql" },
855
+ "apt": { "package": "mysql-server" },
856
+ "yum": { "package": "mysql-server" },
857
+ "dnf": { "package": "mysql-server" },
858
+ "choco": { "package": "mysql" },
859
+ "winget": { "package": "Oracle.MySQL" }
860
+ },
861
+ "binaries": {
862
+ "linux-x64": {
863
+ "url": "https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.3-linux-glibc2.17-x86_64.tar.xz",
864
+ "format": "tar.xz"
865
+ },
866
+ "linux-arm64": {
867
+ "url": "https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.3-linux-glibc2.17-aarch64.tar.xz",
868
+ "format": "tar.xz"
869
+ },
870
+ "darwin-x64": {
871
+ "url": "https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.3-macos14-x86_64.tar.gz",
872
+ "format": "tar.gz"
873
+ },
874
+ "darwin-arm64": {
875
+ "url": "https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.3-macos14-arm64.tar.gz",
876
+ "format": "tar.gz"
877
+ },
878
+ "win32-x64": {
879
+ "url": "https://dev.mysql.com/get/Downloads/MySQL-8.4/mysql-8.4.3-winx64.zip",
880
+ "format": "zip"
881
+ }
882
+ },
883
+ "docker": {
884
+ "image": "mysql",
885
+ "tag": "8.4.3"
886
+ },
887
+ "requires": []
888
+ },
889
+ "opensearch": {
890
+ "name": "OpenSearch",
891
+ "description": "Distributed search and analytics engine",
892
+ "type": "database",
893
+ "packages": {
894
+ "brew": { "package": "opensearch" },
895
+ "apt": {
896
+ "package": "opensearch",
897
+ "repo": "https://artifacts.opensearch.org/releases/bundle/opensearch/2.x/apt"
898
+ },
899
+ "yum": {
900
+ "package": "opensearch",
901
+ "repo": "https://artifacts.opensearch.org/releases/bundle/opensearch/2.x/yum"
902
+ }
903
+ },
904
+ "binaries": {
905
+ "linux-x64": {
906
+ "url": "https://artifacts.opensearch.org/releases/bundle/opensearch/2.18.0/opensearch-2.18.0-linux-x64.tar.gz",
907
+ "format": "tar.gz"
908
+ },
909
+ "linux-arm64": {
910
+ "url": "https://artifacts.opensearch.org/releases/bundle/opensearch/2.18.0/opensearch-2.18.0-linux-arm64.tar.gz",
911
+ "format": "tar.gz"
912
+ },
913
+ "darwin-x64": {
914
+ "url": "https://artifacts.opensearch.org/releases/bundle/opensearch/2.18.0/opensearch-2.18.0-darwin-x64.tar.gz",
915
+ "format": "tar.gz"
916
+ },
917
+ "darwin-arm64": {
918
+ "url": "https://artifacts.opensearch.org/releases/bundle/opensearch/2.18.0/opensearch-2.18.0-darwin-arm64.tar.gz",
919
+ "format": "tar.gz"
920
+ },
921
+ "win32-x64": {
922
+ "url": "https://artifacts.opensearch.org/releases/bundle/opensearch/2.18.0/opensearch-2.18.0-windows-x64.zip",
923
+ "format": "zip"
924
+ }
925
+ },
926
+ "docker": {
927
+ "image": "opensearchproject/opensearch",
928
+ "tag": "2.18.0"
929
+ },
930
+ "requires": ["jre"]
931
+ },
932
+ "postgresql": {
933
+ "name": "PostgreSQL",
934
+ "description": "Advanced open-source relational database",
935
+ "type": "database",
936
+ "packages": {
937
+ "brew": { "package": "postgresql@17" },
938
+ "apt": {
939
+ "package": "postgresql",
940
+ "repo": "https://apt.postgresql.org/pub/repos/apt"
941
+ },
942
+ "yum": {
943
+ "package": "postgresql-server",
944
+ "repo": "https://yum.postgresql.org"
945
+ },
946
+ "dnf": { "package": "postgresql-server" },
947
+ "choco": { "package": "postgresql" },
948
+ "winget": { "package": "PostgreSQL.PostgreSQL" }
949
+ },
950
+ "binaries": {
951
+ "linux-x64": {
952
+ "url": "https://get.enterprisedb.com/postgresql/postgresql-17.2-1-linux-x64-binaries.tar.gz",
953
+ "format": "tar.gz"
954
+ },
955
+ "linux-arm64": {
956
+ "url": "https://downloads.percona.com/downloads/postgresql-distribution-17/17.7/binary/tarball/percona-postgresql-17.7-ssl3-linux-aarch64.tar.gz",
957
+ "format": "tar.gz"
958
+ },
959
+ "darwin-x64": {
960
+ "url": "https://get.enterprisedb.com/postgresql/postgresql-17.2-1-osx-binaries.zip",
961
+ "format": "zip"
962
+ },
963
+ "darwin-arm64": {
964
+ "url": "https://get.enterprisedb.com/postgresql/postgresql-17.2-1-osx-binaries.zip",
965
+ "format": "zip"
966
+ },
967
+ "win32-x64": {
968
+ "url": "https://get.enterprisedb.com/postgresql/postgresql-17.2-1-windows-x64-binaries.zip",
969
+ "format": "zip"
970
+ }
971
+ },
972
+ "docker": {
973
+ "image": "postgres",
974
+ "tag": "17.2"
975
+ },
976
+ "requires": []
977
+ },
978
+ "qdrant": {
979
+ "name": "Qdrant",
980
+ "description": "Vector similarity search engine",
981
+ "type": "database",
982
+ "packages": {
983
+ "brew": { "package": "qdrant/tap/qdrant" },
984
+ "cargo": { "package": "qdrant" }
985
+ },
986
+ "binaries": {
987
+ "linux-x64": {
988
+ "url": "https://github.com/qdrant/qdrant/releases/download/v1.12.5/qdrant-x86_64-unknown-linux-musl.tar.gz",
989
+ "format": "tar.gz"
990
+ },
991
+ "darwin-x64": {
992
+ "url": "https://github.com/qdrant/qdrant/releases/download/v1.12.5/qdrant-x86_64-apple-darwin.tar.gz",
993
+ "format": "tar.gz"
994
+ },
995
+ "darwin-arm64": {
996
+ "url": "https://github.com/qdrant/qdrant/releases/download/v1.12.5/qdrant-aarch64-apple-darwin.tar.gz",
997
+ "format": "tar.gz"
998
+ },
999
+ "win32-x64": {
1000
+ "url": "https://github.com/qdrant/qdrant/releases/download/v1.12.5/qdrant-x86_64-pc-windows-msvc.zip",
1001
+ "format": "zip"
1002
+ }
1003
+ },
1004
+ "docker": {
1005
+ "image": "qdrant/qdrant",
1006
+ "tag": "v1.12.5"
1007
+ },
1008
+ "requires": [],
1009
+ "notes": "No linux-arm64 binary; use Docker or build from source with Rust"
1010
+ },
1011
+ "questdb": {
1012
+ "name": "QuestDB",
1013
+ "description": "Time-series database for fast SQL queries",
1014
+ "type": "database",
1015
+ "packages": {
1016
+ "brew": { "package": "questdb" }
1017
+ },
1018
+ "binaries": {
1019
+ "linux-x64": {
1020
+ "url": "https://github.com/questdb/questdb/releases/download/8.2.1/questdb-8.2.1-rt-linux-x86-64.tar.gz",
1021
+ "format": "tar.gz"
1022
+ },
1023
+ "linux-arm64": {
1024
+ "url": "https://github.com/questdb/questdb/releases/download/8.2.1/questdb-8.2.1-rt-linux-aarch64.tar.gz",
1025
+ "format": "tar.gz"
1026
+ },
1027
+ "darwin-x64": {
1028
+ "url": "https://github.com/questdb/questdb/releases/download/8.2.1/questdb-8.2.1-no-jre-bin.tar.gz",
1029
+ "format": "tar.gz"
1030
+ },
1031
+ "darwin-arm64": {
1032
+ "url": "https://github.com/questdb/questdb/releases/download/8.2.1/questdb-8.2.1-no-jre-bin.tar.gz",
1033
+ "format": "tar.gz"
1034
+ },
1035
+ "win32-x64": {
1036
+ "url": "https://github.com/questdb/questdb/releases/download/8.2.1/questdb-8.2.1-rt-windows-x86-64.zip",
1037
+ "format": "zip"
1038
+ }
1039
+ },
1040
+ "docker": {
1041
+ "image": "questdb/questdb",
1042
+ "tag": "8.2.1"
1043
+ },
1044
+ "requires": ["jre"],
1045
+ "notes": "macOS no-jre builds require Java; Linux/Windows bundles include JRE"
1046
+ },
1047
+ "redis": {
1048
+ "name": "Redis",
1049
+ "description": "In-memory data structure store",
1050
+ "type": "database",
1051
+ "packages": {
1052
+ "brew": { "package": "redis" },
1053
+ "apt": { "package": "redis-server" },
1054
+ "yum": { "package": "redis" },
1055
+ "dnf": { "package": "redis" },
1056
+ "choco": { "package": "redis" }
1057
+ },
1058
+ "binaries": {
1059
+ "linux-x64": {
1060
+ "url": "https://github.com/redis/redis/archive/refs/tags/7.4.1.tar.gz",
1061
+ "format": "tar.gz"
1062
+ },
1063
+ "linux-arm64": {
1064
+ "url": "https://github.com/redis/redis/archive/refs/tags/7.4.1.tar.gz",
1065
+ "format": "tar.gz"
1066
+ },
1067
+ "darwin-x64": {
1068
+ "url": "https://github.com/redis/redis/archive/refs/tags/7.4.1.tar.gz",
1069
+ "format": "tar.gz"
1070
+ },
1071
+ "darwin-arm64": {
1072
+ "url": "https://github.com/redis/redis/archive/refs/tags/7.4.1.tar.gz",
1073
+ "format": "tar.gz"
1074
+ }
1075
+ },
1076
+ "docker": {
1077
+ "image": "redis",
1078
+ "tag": "7.4.1"
1079
+ },
1080
+ "requires": ["build-essential"],
1081
+ "notes": "No official pre-built binaries; source requires compilation"
1082
+ },
1083
+ "rocksdb": {
1084
+ "name": "RocksDB",
1085
+ "description": "Embeddable persistent key-value store",
1086
+ "type": "database",
1087
+ "packages": {
1088
+ "brew": { "package": "rocksdb" },
1089
+ "apt": { "package": "librocksdb-dev" },
1090
+ "yum": { "package": "rocksdb-devel" }
1091
+ },
1092
+ "binaries": {
1093
+ "linux-x64": {
1094
+ "url": "https://github.com/facebook/rocksdb/archive/refs/tags/v9.7.4.tar.gz",
1095
+ "format": "tar.gz"
1096
+ }
1097
+ },
1098
+ "requires": ["build-essential"],
1099
+ "notes": "Embedded library; typically built as dependency, not standalone"
1100
+ },
1101
+ "sqlite": {
1102
+ "name": "SQLite",
1103
+ "description": "Self-contained SQL database engine",
1104
+ "type": "database",
1105
+ "packages": {
1106
+ "brew": { "package": "sqlite" },
1107
+ "apt": { "package": "sqlite3" },
1108
+ "yum": { "package": "sqlite" },
1109
+ "dnf": { "package": "sqlite" },
1110
+ "choco": { "package": "sqlite" },
1111
+ "winget": { "package": "SQLite.SQLite" }
1112
+ },
1113
+ "binaries": {
1114
+ "linux-x64": {
1115
+ "url": "https://www.sqlite.org/2024/sqlite-tools-linux-x64-3470200.zip",
1116
+ "format": "zip"
1117
+ },
1118
+ "darwin-x64": {
1119
+ "url": "https://www.sqlite.org/2024/sqlite-tools-osx-x64-3470200.zip",
1120
+ "format": "zip"
1121
+ },
1122
+ "darwin-arm64": {
1123
+ "url": "https://www.sqlite.org/2024/sqlite-tools-osx-x64-3470200.zip",
1124
+ "format": "zip"
1125
+ },
1126
+ "win32-x64": {
1127
+ "url": "https://www.sqlite.org/2024/sqlite-tools-win-x64-3470200.zip",
1128
+ "format": "zip"
1129
+ }
1130
+ },
1131
+ "requires": [],
1132
+ "notes": "darwin-arm64 uses x64 binary via Rosetta"
1133
+ },
1134
+ "tidb": {
1135
+ "name": "TiDB",
1136
+ "description": "Distributed SQL database with MySQL compatibility",
1137
+ "type": "database",
1138
+ "packages": {},
1139
+ "binaries": {
1140
+ "linux-x64": {
1141
+ "url": "https://download.pingcap.org/tidb-community-server-v8.4.0-linux-amd64.tar.gz",
1142
+ "format": "tar.gz"
1143
+ },
1144
+ "linux-arm64": {
1145
+ "url": "https://download.pingcap.org/tidb-community-server-v8.4.0-linux-arm64.tar.gz",
1146
+ "format": "tar.gz"
1147
+ },
1148
+ "darwin-x64": {
1149
+ "url": "https://download.pingcap.org/tidb-community-server-v8.4.0-darwin-amd64.tar.gz",
1150
+ "format": "tar.gz"
1151
+ },
1152
+ "darwin-arm64": {
1153
+ "url": "https://download.pingcap.org/tidb-community-server-v8.4.0-darwin-arm64.tar.gz",
1154
+ "format": "tar.gz"
1155
+ }
1156
+ },
1157
+ "docker": {
1158
+ "image": "pingcap/tidb",
1159
+ "tag": "v8.4.0"
1160
+ },
1161
+ "requires": [],
1162
+ "notes": "TiUP is the recommended installation method"
1163
+ },
1164
+ "timescaledb": {
1165
+ "name": "TimescaleDB",
1166
+ "description": "PostgreSQL extension for time-series data",
1167
+ "type": "database",
1168
+ "packages": {
1169
+ "brew": { "package": "timescaledb" },
1170
+ "apt": {
1171
+ "package": "timescaledb-2-postgresql-17",
1172
+ "repo": "https://packagecloud.io/timescale/timescaledb/debian"
1173
+ },
1174
+ "yum": {
1175
+ "package": "timescaledb-2-postgresql-17",
1176
+ "repo": "https://packagecloud.io/timescale/timescaledb/el/9"
1177
+ }
1178
+ },
1179
+ "binaries": {},
1180
+ "docker": {
1181
+ "image": "timescale/timescaledb",
1182
+ "tag": "latest-pg17"
1183
+ },
1184
+ "requires": ["postgresql"],
1185
+ "notes": "PostgreSQL extension; requires PostgreSQL installation first"
1186
+ },
1187
+ "valkey": {
1188
+ "name": "Valkey",
1189
+ "description": "Redis-compatible in-memory data store (Linux Foundation fork)",
1190
+ "type": "database",
1191
+ "packages": {
1192
+ "brew": { "package": "valkey" },
1193
+ "apt": { "package": "valkey" },
1194
+ "dnf": { "package": "valkey" }
1195
+ },
1196
+ "binaries": {
1197
+ "linux-x64": {
1198
+ "url": "https://github.com/valkey-io/valkey/releases/download/8.0.2/valkey-8.0.2-linux-amd64.tar.gz",
1199
+ "format": "tar.gz"
1200
+ },
1201
+ "linux-arm64": {
1202
+ "url": "https://github.com/valkey-io/valkey/releases/download/8.0.2/valkey-8.0.2-linux-arm64.tar.gz",
1203
+ "format": "tar.gz"
1204
+ },
1205
+ "darwin-x64": {
1206
+ "url": "https://github.com/valkey-io/valkey/releases/download/8.0.2/valkey-8.0.2-macos-x86_64.tar.gz",
1207
+ "format": "tar.gz"
1208
+ },
1209
+ "darwin-arm64": {
1210
+ "url": "https://github.com/valkey-io/valkey/releases/download/8.0.2/valkey-8.0.2-macos-arm64.tar.gz",
1211
+ "format": "tar.gz"
1212
+ }
1213
+ },
1214
+ "docker": {
1215
+ "image": "valkey/valkey",
1216
+ "tag": "8.0.2"
1217
+ },
1218
+ "requires": [],
1219
+ "notes": "No Windows binary; use WSL or Docker"
1220
+ },
1221
+ "psql": {
1222
+ "name": "PostgreSQL Client",
1223
+ "description": "PostgreSQL interactive terminal",
1224
+ "type": "cli-tool",
1225
+ "binary": "psql",
1226
+ "category": "client",
1227
+ "bundledWith": "postgresql",
1228
+ "packages": {
1229
+ "brew": { "package": "postgresql@17" },
1230
+ "apt": { "package": "postgresql-client" },
1231
+ "yum": { "package": "postgresql" },
1232
+ "dnf": { "package": "postgresql" },
1233
+ "pacman": { "package": "postgresql" },
1234
+ "apk": { "package": "postgresql-client" },
1235
+ "choco": { "package": "postgresql" },
1236
+ "winget": { "package": "PostgreSQL.PostgreSQL" },
1237
+ "scoop": { "package": "postgresql" }
1238
+ },
1239
+ "requires": []
1240
+ },
1241
+ "pg_dump": {
1242
+ "name": "pg_dump",
1243
+ "description": "PostgreSQL database backup utility",
1244
+ "type": "cli-tool",
1245
+ "binary": "pg_dump",
1246
+ "category": "utility",
1247
+ "bundledWith": "postgresql",
1248
+ "packages": {
1249
+ "brew": { "package": "postgresql@17" },
1250
+ "apt": { "package": "postgresql-client" },
1251
+ "yum": { "package": "postgresql" },
1252
+ "dnf": { "package": "postgresql" },
1253
+ "pacman": { "package": "postgresql" },
1254
+ "apk": { "package": "postgresql-client" },
1255
+ "choco": { "package": "postgresql" },
1256
+ "winget": { "package": "PostgreSQL.PostgreSQL" },
1257
+ "scoop": { "package": "postgresql" }
1258
+ },
1259
+ "requires": []
1260
+ },
1261
+ "pg_restore": {
1262
+ "name": "pg_restore",
1263
+ "description": "PostgreSQL database restore utility",
1264
+ "type": "cli-tool",
1265
+ "binary": "pg_restore",
1266
+ "category": "utility",
1267
+ "bundledWith": "postgresql",
1268
+ "packages": {
1269
+ "brew": { "package": "postgresql@17" },
1270
+ "apt": { "package": "postgresql-client" },
1271
+ "yum": { "package": "postgresql" },
1272
+ "dnf": { "package": "postgresql" },
1273
+ "pacman": { "package": "postgresql" },
1274
+ "apk": { "package": "postgresql-client" },
1275
+ "choco": { "package": "postgresql" },
1276
+ "winget": { "package": "PostgreSQL.PostgreSQL" },
1277
+ "scoop": { "package": "postgresql" }
1278
+ },
1279
+ "requires": []
1280
+ },
1281
+ "pgcli": {
1282
+ "name": "pgcli",
1283
+ "description": "PostgreSQL CLI with auto-completion and syntax highlighting",
1284
+ "type": "cli-tool",
1285
+ "binary": "pgcli",
1286
+ "category": "enhanced",
1287
+ "bundledWith": null,
1288
+ "packages": {
1289
+ "brew": { "package": "pgcli" },
1290
+ "apt": { "package": "pgcli" },
1291
+ "pip": { "package": "pgcli" },
1292
+ "pipx": { "package": "pgcli" },
1293
+ "choco": { "package": "pgcli" },
1294
+ "scoop": { "package": "pgcli" }
1295
+ },
1296
+ "requires": ["python"]
1297
+ },
1298
+ "mysql-client": {
1299
+ "name": "MySQL Client",
1300
+ "description": "MySQL command-line client",
1301
+ "type": "cli-tool",
1302
+ "binary": "mysql",
1303
+ "category": "client",
1304
+ "bundledWith": "mysql",
1305
+ "packages": {
1306
+ "brew": { "package": "mysql" },
1307
+ "apt": { "package": "mysql-client" },
1308
+ "yum": { "package": "mysql" },
1309
+ "dnf": { "package": "mysql" },
1310
+ "pacman": { "package": "mysql" },
1311
+ "apk": { "package": "mysql-client" },
1312
+ "choco": { "package": "mysql" },
1313
+ "winget": { "package": "Oracle.MySQL" },
1314
+ "scoop": { "package": "mysql" }
1315
+ },
1316
+ "requires": []
1317
+ },
1318
+ "mysqldump": {
1319
+ "name": "mysqldump",
1320
+ "description": "MySQL database backup utility",
1321
+ "type": "cli-tool",
1322
+ "binary": "mysqldump",
1323
+ "category": "utility",
1324
+ "bundledWith": "mysql",
1325
+ "packages": {
1326
+ "brew": { "package": "mysql" },
1327
+ "apt": { "package": "mysql-client" },
1328
+ "yum": { "package": "mysql" },
1329
+ "dnf": { "package": "mysql" },
1330
+ "pacman": { "package": "mysql" },
1331
+ "apk": { "package": "mysql-client" },
1332
+ "choco": { "package": "mysql" },
1333
+ "winget": { "package": "Oracle.MySQL" },
1334
+ "scoop": { "package": "mysql" }
1335
+ },
1336
+ "requires": []
1337
+ },
1338
+ "mycli": {
1339
+ "name": "mycli",
1340
+ "description": "MySQL CLI with auto-completion and syntax highlighting",
1341
+ "type": "cli-tool",
1342
+ "binary": "mycli",
1343
+ "category": "enhanced",
1344
+ "bundledWith": null,
1345
+ "packages": {
1346
+ "brew": { "package": "mycli" },
1347
+ "apt": { "package": "mycli" },
1348
+ "pip": { "package": "mycli" },
1349
+ "pipx": { "package": "mycli" },
1350
+ "choco": { "package": "mycli" }
1351
+ },
1352
+ "requires": ["python"]
1353
+ },
1354
+ "mariadb-client": {
1355
+ "name": "MariaDB Client",
1356
+ "description": "MariaDB command-line client",
1357
+ "type": "cli-tool",
1358
+ "binary": "mariadb",
1359
+ "category": "client",
1360
+ "bundledWith": "mariadb",
1361
+ "packages": {
1362
+ "brew": { "package": "mariadb" },
1363
+ "apt": { "package": "mariadb-client" },
1364
+ "yum": { "package": "mariadb" },
1365
+ "dnf": { "package": "mariadb" },
1366
+ "pacman": { "package": "mariadb" },
1367
+ "apk": { "package": "mariadb-client" },
1368
+ "choco": { "package": "mariadb" },
1369
+ "winget": { "package": "MariaDB.Server" },
1370
+ "scoop": { "package": "mariadb" }
1371
+ },
1372
+ "requires": []
1373
+ },
1374
+ "mariadb-dump": {
1375
+ "name": "mariadb-dump",
1376
+ "description": "MariaDB database backup utility",
1377
+ "type": "cli-tool",
1378
+ "binary": "mariadb-dump",
1379
+ "category": "utility",
1380
+ "bundledWith": "mariadb",
1381
+ "packages": {
1382
+ "brew": { "package": "mariadb" },
1383
+ "apt": { "package": "mariadb-client" },
1384
+ "yum": { "package": "mariadb" },
1385
+ "dnf": { "package": "mariadb" },
1386
+ "pacman": { "package": "mariadb" },
1387
+ "apk": { "package": "mariadb-client" },
1388
+ "choco": { "package": "mariadb" },
1389
+ "winget": { "package": "MariaDB.Server" },
1390
+ "scoop": { "package": "mariadb" }
1391
+ },
1392
+ "requires": []
1393
+ },
1394
+ "sqlite3": {
1395
+ "name": "SQLite CLI",
1396
+ "description": "SQLite command-line interface",
1397
+ "type": "cli-tool",
1398
+ "binary": "sqlite3",
1399
+ "category": "client",
1400
+ "bundledWith": "sqlite",
1401
+ "packages": {
1402
+ "brew": { "package": "sqlite" },
1403
+ "apt": { "package": "sqlite3" },
1404
+ "yum": { "package": "sqlite" },
1405
+ "dnf": { "package": "sqlite" },
1406
+ "pacman": { "package": "sqlite" },
1407
+ "apk": { "package": "sqlite" },
1408
+ "choco": { "package": "sqlite" },
1409
+ "winget": { "package": "SQLite.SQLite" },
1410
+ "scoop": { "package": "sqlite" }
1411
+ },
1412
+ "binaries": {
1413
+ "linux-x64": {
1414
+ "url": "https://www.sqlite.org/2024/sqlite-tools-linux-x64-3470200.zip",
1415
+ "format": "zip"
1416
+ },
1417
+ "darwin-x64": {
1418
+ "url": "https://www.sqlite.org/2024/sqlite-tools-osx-x64-3470200.zip",
1419
+ "format": "zip"
1420
+ },
1421
+ "darwin-arm64": {
1422
+ "url": "https://www.sqlite.org/2024/sqlite-tools-osx-x64-3470200.zip",
1423
+ "format": "zip"
1424
+ },
1425
+ "win32-x64": {
1426
+ "url": "https://www.sqlite.org/2024/sqlite-tools-win-x64-3470200.zip",
1427
+ "format": "zip"
1428
+ }
1429
+ },
1430
+ "requires": []
1431
+ },
1432
+ "litecli": {
1433
+ "name": "litecli",
1434
+ "description": "SQLite CLI with auto-completion and syntax highlighting",
1435
+ "type": "cli-tool",
1436
+ "binary": "litecli",
1437
+ "category": "enhanced",
1438
+ "bundledWith": null,
1439
+ "packages": {
1440
+ "brew": { "package": "litecli" },
1441
+ "apt": { "package": "litecli" },
1442
+ "pip": { "package": "litecli" },
1443
+ "pipx": { "package": "litecli" }
1444
+ },
1445
+ "requires": ["python"]
1446
+ },
1447
+ "mongosh": {
1448
+ "name": "MongoDB Shell",
1449
+ "description": "MongoDB interactive shell",
1450
+ "type": "cli-tool",
1451
+ "binary": "mongosh",
1452
+ "category": "client",
1453
+ "bundledWith": "mongodb",
1454
+ "packages": {
1455
+ "brew": { "package": "mongosh" },
1456
+ "apt": { "package": "mongodb-mongosh" },
1457
+ "yum": { "package": "mongodb-mongosh" },
1458
+ "choco": { "package": "mongodb-shell" },
1459
+ "winget": { "package": "MongoDB.Shell" },
1460
+ "scoop": { "package": "mongosh", "bucket": "extras" },
1461
+ "npm": { "package": "mongosh" }
1462
+ },
1463
+ "requires": []
1464
+ },
1465
+ "mongodump": {
1466
+ "name": "mongodump",
1467
+ "description": "MongoDB database backup utility",
1468
+ "type": "cli-tool",
1469
+ "binary": "mongodump",
1470
+ "category": "utility",
1471
+ "bundledWith": "mongodb-database-tools",
1472
+ "packages": {
1473
+ "brew": { "package": "mongodb-database-tools", "tap": "mongodb/brew" },
1474
+ "apt": { "package": "mongodb-database-tools" },
1475
+ "yum": { "package": "mongodb-database-tools" },
1476
+ "choco": { "package": "mongodb-database-tools" }
1477
+ },
1478
+ "requires": []
1479
+ },
1480
+ "mongorestore": {
1481
+ "name": "mongorestore",
1482
+ "description": "MongoDB database restore utility",
1483
+ "type": "cli-tool",
1484
+ "binary": "mongorestore",
1485
+ "category": "utility",
1486
+ "bundledWith": "mongodb-database-tools",
1487
+ "packages": {
1488
+ "brew": { "package": "mongodb-database-tools", "tap": "mongodb/brew" },
1489
+ "apt": { "package": "mongodb-database-tools" },
1490
+ "yum": { "package": "mongodb-database-tools" },
1491
+ "choco": { "package": "mongodb-database-tools" }
1492
+ },
1493
+ "requires": []
1494
+ },
1495
+ "redis-cli": {
1496
+ "name": "Redis CLI",
1497
+ "description": "Redis command-line interface",
1498
+ "type": "cli-tool",
1499
+ "binary": "redis-cli",
1500
+ "category": "client",
1501
+ "bundledWith": "redis",
1502
+ "packages": {
1503
+ "brew": { "package": "redis" },
1504
+ "apt": { "package": "redis-tools" },
1505
+ "yum": { "package": "redis" },
1506
+ "dnf": { "package": "redis" },
1507
+ "pacman": { "package": "redis" },
1508
+ "apk": { "package": "redis" },
1509
+ "choco": { "package": "redis" },
1510
+ "scoop": { "package": "redis" }
1511
+ },
1512
+ "requires": []
1513
+ },
1514
+ "iredis": {
1515
+ "name": "iredis",
1516
+ "description": "Redis CLI with auto-completion and syntax highlighting",
1517
+ "type": "cli-tool",
1518
+ "binary": "iredis",
1519
+ "category": "enhanced",
1520
+ "bundledWith": null,
1521
+ "packages": {
1522
+ "brew": { "package": "iredis" },
1523
+ "pip": { "package": "iredis" },
1524
+ "pipx": { "package": "iredis" }
1525
+ },
1526
+ "requires": ["python"]
1527
+ },
1528
+ "valkey-cli": {
1529
+ "name": "Valkey CLI",
1530
+ "description": "Valkey command-line interface",
1531
+ "type": "cli-tool",
1532
+ "binary": "valkey-cli",
1533
+ "category": "client",
1534
+ "bundledWith": "valkey",
1535
+ "packages": {
1536
+ "brew": { "package": "valkey" },
1537
+ "apt": { "package": "valkey" },
1538
+ "dnf": { "package": "valkey" }
1539
+ },
1540
+ "requires": []
1541
+ },
1542
+ "duckdb-cli": {
1543
+ "name": "DuckDB CLI",
1544
+ "description": "DuckDB command-line interface",
1545
+ "type": "cli-tool",
1546
+ "binary": "duckdb",
1547
+ "category": "client",
1548
+ "bundledWith": "duckdb",
1549
+ "packages": {
1550
+ "brew": { "package": "duckdb" },
1551
+ "pip": { "package": "duckdb" },
1552
+ "choco": { "package": "duckdb" },
1553
+ "winget": { "package": "DuckDB.cli" },
1554
+ "scoop": { "package": "duckdb" }
1555
+ },
1556
+ "binaries": {
1557
+ "linux-x64": {
1558
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-linux-amd64.zip",
1559
+ "format": "zip"
1560
+ },
1561
+ "linux-arm64": {
1562
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-linux-aarch64.zip",
1563
+ "format": "zip"
1564
+ },
1565
+ "darwin-x64": {
1566
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-osx-universal.zip",
1567
+ "format": "zip"
1568
+ },
1569
+ "darwin-arm64": {
1570
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-osx-universal.zip",
1571
+ "format": "zip"
1572
+ },
1573
+ "win32-x64": {
1574
+ "url": "https://github.com/duckdb/duckdb/releases/download/v1.1.3/duckdb_cli-windows-amd64.zip",
1575
+ "format": "zip"
1576
+ }
1577
+ },
1578
+ "requires": []
1579
+ },
1580
+ "usql": {
1581
+ "name": "usql",
1582
+ "description": "Universal SQL CLI for PostgreSQL, MySQL, SQLite, and more",
1583
+ "type": "cli-tool",
1584
+ "binary": "usql",
1585
+ "category": "enhanced",
1586
+ "bundledWith": null,
1587
+ "packages": {
1588
+ "brew": { "package": "usql" },
1589
+ "go": { "package": "github.com/xo/usql@latest" },
1590
+ "scoop": { "package": "usql" }
1591
+ },
1592
+ "binaries": {
1593
+ "linux-x64": {
1594
+ "url": "https://github.com/xo/usql/releases/download/v0.19.3/usql-0.19.3-linux-amd64.tar.bz2",
1595
+ "format": "tar.bz2"
1596
+ },
1597
+ "linux-arm64": {
1598
+ "url": "https://github.com/xo/usql/releases/download/v0.19.3/usql-0.19.3-linux-arm64.tar.bz2",
1599
+ "format": "tar.bz2"
1600
+ },
1601
+ "darwin-x64": {
1602
+ "url": "https://github.com/xo/usql/releases/download/v0.19.3/usql-0.19.3-darwin-amd64.tar.bz2",
1603
+ "format": "tar.bz2"
1604
+ },
1605
+ "darwin-arm64": {
1606
+ "url": "https://github.com/xo/usql/releases/download/v0.19.3/usql-0.19.3-darwin-arm64.tar.bz2",
1607
+ "format": "tar.bz2"
1608
+ },
1609
+ "win32-x64": {
1610
+ "url": "https://github.com/xo/usql/releases/download/v0.19.3/usql-0.19.3-windows-amd64.zip",
1611
+ "format": "zip"
1612
+ }
1613
+ },
1614
+ "requires": []
1615
+ },
1616
+ "cqlsh": {
1617
+ "name": "Cassandra CQL Shell",
1618
+ "description": "Apache Cassandra CQL interactive shell",
1619
+ "type": "cli-tool",
1620
+ "binary": "cqlsh",
1621
+ "category": "client",
1622
+ "bundledWith": "apache-cassandra",
1623
+ "packages": {
1624
+ "brew": { "package": "cassandra" },
1625
+ "pip": { "package": "cqlsh" }
1626
+ },
1627
+ "requires": ["python"]
1628
+ },
1629
+ "nodetool": {
1630
+ "name": "Cassandra nodetool",
1631
+ "description": "Apache Cassandra cluster management utility",
1632
+ "type": "cli-tool",
1633
+ "binary": "nodetool",
1634
+ "category": "utility",
1635
+ "bundledWith": "apache-cassandra",
1636
+ "packages": {
1637
+ "brew": { "package": "cassandra" }
1638
+ },
1639
+ "requires": ["jre"]
1640
+ },
1641
+ "cockroach": {
1642
+ "name": "CockroachDB CLI",
1643
+ "description": "CockroachDB all-in-one CLI for server, client, and utilities",
1644
+ "type": "cli-tool",
1645
+ "binary": "cockroach",
1646
+ "category": "client",
1647
+ "bundledWith": "cockroachdb",
1648
+ "packages": {
1649
+ "brew": { "package": "cockroachdb/tap/cockroach" }
1650
+ },
1651
+ "binaries": {
1652
+ "linux-x64": {
1653
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.linux-amd64.tgz",
1654
+ "format": "tar.gz"
1655
+ },
1656
+ "linux-arm64": {
1657
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.linux-arm64.tgz",
1658
+ "format": "tar.gz"
1659
+ },
1660
+ "darwin-x64": {
1661
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.darwin-10.9-amd64.tgz",
1662
+ "format": "tar.gz"
1663
+ },
1664
+ "darwin-arm64": {
1665
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.darwin-11.0-arm64.tgz",
1666
+ "format": "tar.gz"
1667
+ },
1668
+ "win32-x64": {
1669
+ "url": "https://binaries.cockroachdb.com/cockroach-v25.4.2.windows-6.2-amd64.zip",
1670
+ "format": "zip"
1671
+ }
1672
+ },
1673
+ "requires": [],
1674
+ "notes": "PostgreSQL wire protocol; pgcli and usql also work"
1675
+ },
1676
+ "arangosh": {
1677
+ "name": "ArangoDB Shell",
1678
+ "description": "ArangoDB interactive shell",
1679
+ "type": "cli-tool",
1680
+ "binary": "arangosh",
1681
+ "category": "client",
1682
+ "bundledWith": "arangodb",
1683
+ "packages": {
1684
+ "brew": { "package": "arangodb" },
1685
+ "apt": {
1686
+ "package": "arangodb3",
1687
+ "repo": "https://www.arangodb.com/download-major/ubuntu/"
1688
+ },
1689
+ "yum": {
1690
+ "package": "arangodb3",
1691
+ "repo": "https://www.arangodb.com/download-major/redhat/"
1692
+ },
1693
+ "choco": { "package": "arangodb" }
1694
+ },
1695
+ "requires": []
1696
+ },
1697
+ "arangodump": {
1698
+ "name": "arangodump",
1699
+ "description": "ArangoDB database backup utility",
1700
+ "type": "cli-tool",
1701
+ "binary": "arangodump",
1702
+ "category": "utility",
1703
+ "bundledWith": "arangodb",
1704
+ "packages": {
1705
+ "brew": { "package": "arangodb" },
1706
+ "apt": { "package": "arangodb3" },
1707
+ "yum": { "package": "arangodb3" },
1708
+ "choco": { "package": "arangodb" }
1709
+ },
1710
+ "requires": []
1711
+ },
1712
+ "arangorestore": {
1713
+ "name": "arangorestore",
1714
+ "description": "ArangoDB database restore utility",
1715
+ "type": "cli-tool",
1716
+ "binary": "arangorestore",
1717
+ "category": "utility",
1718
+ "bundledWith": "arangodb",
1719
+ "packages": {
1720
+ "brew": { "package": "arangodb" },
1721
+ "apt": { "package": "arangodb3" },
1722
+ "yum": { "package": "arangodb3" },
1723
+ "choco": { "package": "arangodb" }
1724
+ },
1725
+ "requires": []
1726
+ },
1727
+ "influx": {
1728
+ "name": "InfluxDB CLI",
1729
+ "description": "InfluxDB command-line interface",
1730
+ "type": "cli-tool",
1731
+ "binary": "influx",
1732
+ "category": "client",
1733
+ "bundledWith": "influxdb",
1734
+ "packages": {
1735
+ "brew": { "package": "influxdb-cli" },
1736
+ "apt": { "package": "influxdb2-cli" },
1737
+ "yum": { "package": "influxdb2-cli" },
1738
+ "choco": { "package": "influxdb" }
1739
+ },
1740
+ "requires": []
1741
+ },
1742
+ "fdbcli": {
1743
+ "name": "FoundationDB CLI",
1744
+ "description": "FoundationDB command-line interface",
1745
+ "type": "cli-tool",
1746
+ "binary": "fdbcli",
1747
+ "category": "client",
1748
+ "bundledWith": "foundationdb",
1749
+ "packages": {
1750
+ "brew": { "package": "foundationdb" }
1751
+ },
1752
+ "requires": []
1753
+ },
1754
+ "tiup": {
1755
+ "name": "TiUP",
1756
+ "description": "TiDB package manager and cluster manager",
1757
+ "type": "cli-tool",
1758
+ "binary": "tiup",
1759
+ "category": "utility",
1760
+ "bundledWith": null,
1761
+ "packages": {},
1762
+ "requires": [],
1763
+ "notes": "Install via: curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh"
1764
+ }
1765
+ }
1766
+ }