hostdb 0.10.1 → 0.11.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 +1 -1
- package/package.json +5 -4
package/databases.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hostdb",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.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",
|
|
@@ -26,11 +26,11 @@
|
|
|
26
26
|
"downloads.json"
|
|
27
27
|
],
|
|
28
28
|
"scripts": {
|
|
29
|
-
"start": "tsx cli/bin.ts",
|
|
30
29
|
"add:engine": "tsx scripts/add-engine.ts",
|
|
31
30
|
"checksums:populate": "tsx scripts/populate-checksums.ts",
|
|
32
31
|
"dbs": "tsx scripts/list-databases.ts",
|
|
33
32
|
"download:clickhouse": "tsx builds/clickhouse/download.ts",
|
|
33
|
+
"download:duckdb": "tsx builds/duckdb/download.ts",
|
|
34
34
|
"download:mariadb": "tsx builds/mariadb/download.ts",
|
|
35
35
|
"download:mongodb": "tsx builds/mongodb/download.ts",
|
|
36
36
|
"download:mysql": "tsx builds/mysql/download.ts",
|
|
@@ -43,9 +43,10 @@
|
|
|
43
43
|
"lint": "tsc --noEmit && eslint .",
|
|
44
44
|
"prep": "tsx scripts/prep.ts",
|
|
45
45
|
"reconcile:releases": "tsx scripts/reconcile-releases.ts",
|
|
46
|
+
"repair:checksums": "tsx scripts/repair-checksums.ts",
|
|
47
|
+
"start": "tsx cli/bin.ts",
|
|
46
48
|
"sync:versions": "tsx scripts/sync-versions.ts",
|
|
47
|
-
"update:releases": "tsx scripts/update-releases.ts"
|
|
48
|
-
"repair:checksums": "tsx scripts/repair-checksums.ts"
|
|
49
|
+
"update:releases": "tsx scripts/update-releases.ts"
|
|
49
50
|
},
|
|
50
51
|
"dependencies": {
|
|
51
52
|
"tsx": "^4.19.0"
|