@nindroidsystems/pluginator 2.3.2 → 2.3.4
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/data/defaults/plugin-registry.json +23 -5
- package/dist/cli.js +148 -20
- package/dist/config/schema.d.ts +32 -32
- package/dist/config/schema.d.ts.map +1 -1
- package/dist/core/plugin-manager.d.ts.map +1 -1
- package/dist/core/registry/registry-download.d.ts.map +1 -1
- package/dist/core/sources/geysermc.d.ts +50 -0
- package/dist/core/sources/geysermc.d.ts.map +1 -0
- package/dist/core/sources/index.d.ts +2 -1
- package/dist/core/sources/index.d.ts.map +1 -1
- package/dist/core/types/plugin.d.ts +1 -1
- package/dist/core/types/plugin.d.ts.map +1 -1
- package/dist/core/types/source.d.ts +1 -1
- package/dist/core/types/source.d.ts.map +1 -1
- package/dist/dev/components/DevWrapper.d.ts.map +1 -1
- package/dist/ui/hooks/usePluginEditor.d.ts.map +1 -1
- package/dist/ui/utils/icons.d.ts.map +1 -1
- package/dist/workflows/update-check.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -598,7 +598,7 @@
|
|
|
598
598
|
{
|
|
599
599
|
"id": "floodgate",
|
|
600
600
|
"name": "Floodgate",
|
|
601
|
-
"description": "Allow Bedrock players to join Java servers",
|
|
601
|
+
"description": "Allow Bedrock players to join online-mode Java servers",
|
|
602
602
|
"authors": [
|
|
603
603
|
"GeyserMC Team"
|
|
604
604
|
],
|
|
@@ -612,10 +612,18 @@
|
|
|
612
612
|
],
|
|
613
613
|
"sources": [
|
|
614
614
|
{
|
|
615
|
-
"type": "
|
|
615
|
+
"type": "geysermc",
|
|
616
616
|
"projectSlug": "floodgate",
|
|
617
617
|
"preferred": true
|
|
618
618
|
},
|
|
619
|
+
{
|
|
620
|
+
"type": "modrinth",
|
|
621
|
+
"projectSlug": "floodgate"
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"type": "hangar",
|
|
625
|
+
"projectSlug": "Floodgate"
|
|
626
|
+
},
|
|
619
627
|
{
|
|
620
628
|
"type": "github",
|
|
621
629
|
"repoSlug": "GeyserMC/Floodgate"
|
|
@@ -630,7 +638,7 @@
|
|
|
630
638
|
},
|
|
631
639
|
{
|
|
632
640
|
"id": "geyser",
|
|
633
|
-
"name": "Geyser",
|
|
641
|
+
"name": "Geyser-Spigot",
|
|
634
642
|
"description": "Bridge between Bedrock and Java Edition",
|
|
635
643
|
"authors": [
|
|
636
644
|
"GeyserMC Team"
|
|
@@ -642,14 +650,24 @@
|
|
|
642
650
|
"crossplay",
|
|
643
651
|
"bridge",
|
|
644
652
|
"xbox",
|
|
645
|
-
"switch"
|
|
653
|
+
"switch",
|
|
654
|
+
"paper",
|
|
655
|
+
"purpur"
|
|
646
656
|
],
|
|
647
657
|
"sources": [
|
|
648
658
|
{
|
|
649
|
-
"type": "
|
|
659
|
+
"type": "geysermc",
|
|
650
660
|
"projectSlug": "geyser",
|
|
651
661
|
"preferred": true
|
|
652
662
|
},
|
|
663
|
+
{
|
|
664
|
+
"type": "modrinth",
|
|
665
|
+
"projectSlug": "geyser"
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"type": "hangar",
|
|
669
|
+
"projectSlug": "Geyser"
|
|
670
|
+
},
|
|
653
671
|
{
|
|
654
672
|
"type": "github",
|
|
655
673
|
"repoSlug": "GeyserMC/Geyser"
|
package/dist/cli.js
CHANGED
|
@@ -2359,7 +2359,7 @@ var require_commander = __commonJS((exports) => {
|
|
|
2359
2359
|
});
|
|
2360
2360
|
|
|
2361
2361
|
// package.json
|
|
2362
|
-
var version = "2.3.
|
|
2362
|
+
var version = "2.3.4", package_default;
|
|
2363
2363
|
var init_package = __esm(() => {
|
|
2364
2364
|
package_default = {
|
|
2365
2365
|
name: "@nindroidsystems/pluginator",
|
|
@@ -6556,7 +6556,7 @@ var init_schema = __esm(() => {
|
|
|
6556
6556
|
});
|
|
6557
6557
|
PluginSchemaBase = exports_external.object({
|
|
6558
6558
|
name: exports_external.string().min(1),
|
|
6559
|
-
type: exports_external.enum(["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar"]),
|
|
6559
|
+
type: exports_external.enum(["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar", "geysermc"]),
|
|
6560
6560
|
id: exports_external.string().optional(),
|
|
6561
6561
|
jType: exports_external.string().optional(),
|
|
6562
6562
|
version: exports_external.string().optional(),
|
|
@@ -6623,10 +6623,11 @@ var init_schema = __esm(() => {
|
|
|
6623
6623
|
}
|
|
6624
6624
|
break;
|
|
6625
6625
|
case "hangar":
|
|
6626
|
+
case "geysermc":
|
|
6626
6627
|
if (!plugin.projectSlug && !plugin.id) {
|
|
6627
6628
|
ctx.addIssue({
|
|
6628
6629
|
code: exports_external.ZodIssueCode.custom,
|
|
6629
|
-
message: `Plugin '${plugin.name}' of type '
|
|
6630
|
+
message: `Plugin '${plugin.name}' of type '${plugin.type}' requires 'projectSlug' or 'id'`,
|
|
6630
6631
|
path: ["projectSlug"]
|
|
6631
6632
|
});
|
|
6632
6633
|
}
|
|
@@ -6639,7 +6640,7 @@ var init_schema = __esm(() => {
|
|
|
6639
6640
|
SourceConfigSchema = exports_external.object({
|
|
6640
6641
|
id: exports_external.string().min(1),
|
|
6641
6642
|
name: exports_external.string().min(1),
|
|
6642
|
-
type: exports_external.enum(["spigot", "modrinth", "github", "bukkit", "web", "jenkins", "ninsys", "hangar", "curseforge"]),
|
|
6643
|
+
type: exports_external.enum(["spigot", "modrinth", "github", "bukkit", "web", "jenkins", "ninsys", "hangar", "geysermc", "curseforge"]),
|
|
6643
6644
|
url: exports_external.string().url(),
|
|
6644
6645
|
enabled: exports_external.boolean().default(true),
|
|
6645
6646
|
checkIntervalSeconds: exports_external.number().int().min(60).max(86400).optional(),
|
|
@@ -6703,7 +6704,7 @@ var init_schema = __esm(() => {
|
|
|
6703
6704
|
]);
|
|
6704
6705
|
UserPluginEntrySchema = exports_external.object({
|
|
6705
6706
|
name: exports_external.string().min(1),
|
|
6706
|
-
type: exports_external.enum(["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar"]),
|
|
6707
|
+
type: exports_external.enum(["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar", "geysermc"]),
|
|
6707
6708
|
resourceId: exports_external.string().optional(),
|
|
6708
6709
|
projectSlug: exports_external.string().optional(),
|
|
6709
6710
|
repoSlug: exports_external.string().regex(/^[a-zA-Z0-9_.-]+\/[a-zA-Z0-9_.-]+$/, "Invalid repo slug format (owner/repo)").optional(),
|
|
@@ -6731,6 +6732,7 @@ var init_schema = __esm(() => {
|
|
|
6731
6732
|
break;
|
|
6732
6733
|
case "modrinth":
|
|
6733
6734
|
case "hangar":
|
|
6735
|
+
case "geysermc":
|
|
6734
6736
|
if (!entry.projectSlug) {
|
|
6735
6737
|
ctx.addIssue({
|
|
6736
6738
|
code: exports_external.ZodIssueCode.custom,
|
|
@@ -8519,7 +8521,10 @@ class PluginManager {
|
|
|
8519
8521
|
if (result.success) {
|
|
8520
8522
|
this.plugins = result.data.plugins || [];
|
|
8521
8523
|
} else {
|
|
8522
|
-
log.warn("Invalid plugins config", {
|
|
8524
|
+
log.warn("Invalid plugins config", {
|
|
8525
|
+
path: this.pluginsPath,
|
|
8526
|
+
error: result.error.message
|
|
8527
|
+
});
|
|
8523
8528
|
this.plugins = [];
|
|
8524
8529
|
}
|
|
8525
8530
|
} catch (error) {
|
|
@@ -8608,6 +8613,9 @@ class PluginManager {
|
|
|
8608
8613
|
return plugin.name;
|
|
8609
8614
|
case "jenkins":
|
|
8610
8615
|
return plugin.job || null;
|
|
8616
|
+
case "hangar":
|
|
8617
|
+
case "geysermc":
|
|
8618
|
+
return plugin.projectSlug || null;
|
|
8611
8619
|
case "manual":
|
|
8612
8620
|
return null;
|
|
8613
8621
|
default:
|
|
@@ -25635,6 +25643,83 @@ var init_hangar = __esm(() => {
|
|
|
25635
25643
|
init_base();
|
|
25636
25644
|
});
|
|
25637
25645
|
|
|
25646
|
+
// src/core/sources/geysermc.ts
|
|
25647
|
+
var GeyserMCSource;
|
|
25648
|
+
var init_geysermc = __esm(() => {
|
|
25649
|
+
init_version();
|
|
25650
|
+
init_base();
|
|
25651
|
+
GeyserMCSource = class GeyserMCSource extends BasePluginSource {
|
|
25652
|
+
id = "geysermc";
|
|
25653
|
+
name = "GeyserMC";
|
|
25654
|
+
type = "geysermc";
|
|
25655
|
+
static API_BASE = "https://download.geysermc.org/v2";
|
|
25656
|
+
platform = "spigot";
|
|
25657
|
+
setPlatform(platform5) {
|
|
25658
|
+
this.platform = platform5;
|
|
25659
|
+
}
|
|
25660
|
+
async getPluginInfo(projectId) {
|
|
25661
|
+
const cacheKey = `geysermc:${projectId}:${this.platform}`;
|
|
25662
|
+
const cached = this.cache.get(cacheKey);
|
|
25663
|
+
if (cached)
|
|
25664
|
+
return cached;
|
|
25665
|
+
try {
|
|
25666
|
+
const build = await this.fetchJson(`${GeyserMCSource.API_BASE}/projects/${projectId}/versions/latest/builds/latest`);
|
|
25667
|
+
const download = build.downloads[this.platform];
|
|
25668
|
+
if (!download)
|
|
25669
|
+
return null;
|
|
25670
|
+
const downloadUrl = `${GeyserMCSource.API_BASE}/projects/${projectId}/versions/latest/builds/latest/downloads/${this.platform}`;
|
|
25671
|
+
const info = {
|
|
25672
|
+
name: build.project_name,
|
|
25673
|
+
version: build.version,
|
|
25674
|
+
description: this.getProjectDescription(projectId),
|
|
25675
|
+
author: "GeyserMC Team",
|
|
25676
|
+
downloadUrl,
|
|
25677
|
+
sha256: download.sha256,
|
|
25678
|
+
releaseDate: build.time,
|
|
25679
|
+
changelog: build.changes.map((c) => c.summary).join("; "),
|
|
25680
|
+
sourceType: "geysermc",
|
|
25681
|
+
sourceId: projectId,
|
|
25682
|
+
website: "https://geysermc.org"
|
|
25683
|
+
};
|
|
25684
|
+
this.cache.set(cacheKey, info);
|
|
25685
|
+
return info;
|
|
25686
|
+
} catch (error) {
|
|
25687
|
+
if (error instanceof SourceError2 && error.statusCode === 404) {
|
|
25688
|
+
return null;
|
|
25689
|
+
}
|
|
25690
|
+
throw error;
|
|
25691
|
+
}
|
|
25692
|
+
}
|
|
25693
|
+
async searchPlugins(_query, _limit) {
|
|
25694
|
+
return [];
|
|
25695
|
+
}
|
|
25696
|
+
async getLatestVersion(projectId) {
|
|
25697
|
+
try {
|
|
25698
|
+
const info = await this.getPluginInfo(projectId);
|
|
25699
|
+
return info?.version ?? null;
|
|
25700
|
+
} catch {
|
|
25701
|
+
return null;
|
|
25702
|
+
}
|
|
25703
|
+
}
|
|
25704
|
+
buildHeaders(additional = {}) {
|
|
25705
|
+
return super.buildHeaders({
|
|
25706
|
+
"User-Agent": getUserAgent(),
|
|
25707
|
+
...additional
|
|
25708
|
+
});
|
|
25709
|
+
}
|
|
25710
|
+
getProjectDescription(projectId) {
|
|
25711
|
+
switch (projectId) {
|
|
25712
|
+
case "geyser":
|
|
25713
|
+
return "Bridge between Bedrock and Java Edition";
|
|
25714
|
+
case "floodgate":
|
|
25715
|
+
return "Allow Bedrock players to join online-mode Java servers";
|
|
25716
|
+
default:
|
|
25717
|
+
return `GeyserMC project: ${projectId}`;
|
|
25718
|
+
}
|
|
25719
|
+
}
|
|
25720
|
+
};
|
|
25721
|
+
});
|
|
25722
|
+
|
|
25638
25723
|
// src/core/sources/index.ts
|
|
25639
25724
|
var init_sources = __esm(() => {
|
|
25640
25725
|
init_utils();
|
|
@@ -25649,6 +25734,7 @@ var init_sources = __esm(() => {
|
|
|
25649
25734
|
init_bukkit();
|
|
25650
25735
|
init_jenkins();
|
|
25651
25736
|
init_hangar();
|
|
25737
|
+
init_geysermc();
|
|
25652
25738
|
});
|
|
25653
25739
|
|
|
25654
25740
|
// src/infrastructure/format.ts
|
|
@@ -27308,6 +27394,8 @@ function getSourceIdentifier(plugin) {
|
|
|
27308
27394
|
return plugin.name;
|
|
27309
27395
|
case "jenkins":
|
|
27310
27396
|
return plugin.job ?? null;
|
|
27397
|
+
case "geysermc":
|
|
27398
|
+
return plugin.projectSlug ?? null;
|
|
27311
27399
|
case "manual":
|
|
27312
27400
|
return null;
|
|
27313
27401
|
default:
|
|
@@ -27447,8 +27535,15 @@ var init_update_check = __esm(() => {
|
|
|
27447
27535
|
status: "timeout",
|
|
27448
27536
|
message: `Timed out after ${timeout / 1000}s`
|
|
27449
27537
|
});
|
|
27450
|
-
this.emit("progress", {
|
|
27451
|
-
|
|
27538
|
+
this.emit("progress", {
|
|
27539
|
+
...progress,
|
|
27540
|
+
status: "timeout",
|
|
27541
|
+
message: `Timed out after ${timeout / 1000}s`
|
|
27542
|
+
});
|
|
27543
|
+
log9.warn("Update check timed out", {
|
|
27544
|
+
plugin: plugin.name,
|
|
27545
|
+
timeout
|
|
27546
|
+
});
|
|
27452
27547
|
return;
|
|
27453
27548
|
}
|
|
27454
27549
|
const errorMessage = error instanceof Error ? error.message : String(error);
|
|
@@ -27483,14 +27578,20 @@ var init_update_check = __esm(() => {
|
|
|
27483
27578
|
status: "error",
|
|
27484
27579
|
message: errorMessage
|
|
27485
27580
|
});
|
|
27486
|
-
this.emit("progress", {
|
|
27581
|
+
this.emit("progress", {
|
|
27582
|
+
...progress,
|
|
27583
|
+
status: "error",
|
|
27584
|
+
message: errorMessage
|
|
27585
|
+
});
|
|
27487
27586
|
}
|
|
27488
27587
|
});
|
|
27489
27588
|
await Promise.all(checks);
|
|
27490
27589
|
}
|
|
27491
27590
|
if (Object.keys(resultsToCache).length > 0) {
|
|
27492
27591
|
cache2.saveUpdateResults(resultsToCache).catch((err) => {
|
|
27493
|
-
log9.warn("Failed to save update results to cache", {
|
|
27592
|
+
log9.warn("Failed to save update results to cache", {
|
|
27593
|
+
error: err instanceof Error ? err.message : String(err)
|
|
27594
|
+
});
|
|
27494
27595
|
});
|
|
27495
27596
|
}
|
|
27496
27597
|
result.duration = Date.now() - startTime;
|
|
@@ -69109,7 +69210,10 @@ class RegistryDownloadService {
|
|
|
69109
69210
|
}
|
|
69110
69211
|
async resolvePlugin(plugin, options = {}) {
|
|
69111
69212
|
const op = log10.startOperation("resolve-registry-plugin");
|
|
69112
|
-
op.info("Resolving plugin from registry", {
|
|
69213
|
+
op.info("Resolving plugin from registry", {
|
|
69214
|
+
pluginId: plugin.id,
|
|
69215
|
+
sourceCount: plugin.sources.length
|
|
69216
|
+
});
|
|
69113
69217
|
const triedSources = [];
|
|
69114
69218
|
const sortedSources = [...plugin.sources].sort((a, b) => {
|
|
69115
69219
|
if (a.preferred && !b.preferred)
|
|
@@ -69128,7 +69232,10 @@ class RegistryDownloadService {
|
|
|
69128
69232
|
try {
|
|
69129
69233
|
const pluginInfo = await this.resolveFromSource(plugin, registrySource, sourceImpl, options);
|
|
69130
69234
|
if (pluginInfo) {
|
|
69131
|
-
op.end("success", {
|
|
69235
|
+
op.end("success", {
|
|
69236
|
+
source: registrySource.type,
|
|
69237
|
+
version: pluginInfo.version
|
|
69238
|
+
});
|
|
69132
69239
|
return {
|
|
69133
69240
|
success: true,
|
|
69134
69241
|
pluginInfo,
|
|
@@ -69139,7 +69246,10 @@ class RegistryDownloadService {
|
|
|
69139
69246
|
triedSources.push(`${registrySource.type} (no download found)`);
|
|
69140
69247
|
} catch (error) {
|
|
69141
69248
|
const errorMsg = error instanceof Error ? error.message : String(error);
|
|
69142
|
-
op.warn("Source failed", {
|
|
69249
|
+
op.warn("Source failed", {
|
|
69250
|
+
type: registrySource.type,
|
|
69251
|
+
error: errorMsg
|
|
69252
|
+
});
|
|
69143
69253
|
triedSources.push(`${registrySource.type} (${errorMsg})`);
|
|
69144
69254
|
}
|
|
69145
69255
|
}
|
|
@@ -69153,7 +69263,10 @@ class RegistryDownloadService {
|
|
|
69153
69263
|
async resolveFromSource(plugin, registrySource, sourceImpl, options) {
|
|
69154
69264
|
const sourceId = this.getSourceId(registrySource);
|
|
69155
69265
|
if (!sourceId) {
|
|
69156
|
-
log10.debug("No source ID configured", {
|
|
69266
|
+
log10.debug("No source ID configured", {
|
|
69267
|
+
plugin: plugin.id,
|
|
69268
|
+
type: registrySource.type
|
|
69269
|
+
});
|
|
69157
69270
|
return null;
|
|
69158
69271
|
}
|
|
69159
69272
|
if (options.minecraftVersion && "setMinecraftVersion" in sourceImpl) {
|
|
@@ -69176,6 +69289,8 @@ class RegistryDownloadService {
|
|
|
69176
69289
|
return source.resourceId?.toString();
|
|
69177
69290
|
case "hangar":
|
|
69178
69291
|
return source.hangarSlug;
|
|
69292
|
+
case "geysermc":
|
|
69293
|
+
return source.projectSlug;
|
|
69179
69294
|
case "github":
|
|
69180
69295
|
return source.repoSlug;
|
|
69181
69296
|
case "jenkins":
|
|
@@ -69186,7 +69301,10 @@ class RegistryDownloadService {
|
|
|
69186
69301
|
}
|
|
69187
69302
|
async downloadPlugin(plugin, options) {
|
|
69188
69303
|
const op = log10.startOperation("registry-download");
|
|
69189
|
-
op.info("Downloading plugin from registry", {
|
|
69304
|
+
op.info("Downloading plugin from registry", {
|
|
69305
|
+
pluginId: plugin.id,
|
|
69306
|
+
targetDir: options.targetDir
|
|
69307
|
+
});
|
|
69190
69308
|
const resolveResult = await this.resolvePlugin(plugin, {
|
|
69191
69309
|
minecraftVersion: options.minecraftVersion
|
|
69192
69310
|
});
|
|
@@ -91032,6 +91150,7 @@ function getIdentifierFieldName(type2) {
|
|
|
91032
91150
|
case "modrinth":
|
|
91033
91151
|
return "Project Slug";
|
|
91034
91152
|
case "hangar":
|
|
91153
|
+
case "geysermc":
|
|
91035
91154
|
return "Project Slug";
|
|
91036
91155
|
case "github":
|
|
91037
91156
|
return "Repo (owner/repo)";
|
|
@@ -91051,6 +91170,7 @@ function getPluginIdentifier(plugin) {
|
|
|
91051
91170
|
return plugin.resourceId ?? "";
|
|
91052
91171
|
case "modrinth":
|
|
91053
91172
|
case "hangar":
|
|
91173
|
+
case "geysermc":
|
|
91054
91174
|
return plugin.projectSlug ?? "";
|
|
91055
91175
|
case "github":
|
|
91056
91176
|
return plugin.repoSlug ?? "";
|
|
@@ -91148,6 +91268,7 @@ function usePluginEditor(pluginToEdit) {
|
|
|
91148
91268
|
break;
|
|
91149
91269
|
case "modrinth":
|
|
91150
91270
|
case "hangar":
|
|
91271
|
+
case "geysermc":
|
|
91151
91272
|
plugin.projectSlug = editIdentifier;
|
|
91152
91273
|
break;
|
|
91153
91274
|
case "github":
|
|
@@ -91193,7 +91314,7 @@ var import_react109, SOURCE_TYPES;
|
|
|
91193
91314
|
var init_usePluginEditor = __esm(() => {
|
|
91194
91315
|
init_registry_service();
|
|
91195
91316
|
import_react109 = __toESM(require_react(), 1);
|
|
91196
|
-
SOURCE_TYPES = ["modrinth", "spigot", "hangar", "github", "jenkins", "web", "manual"];
|
|
91317
|
+
SOURCE_TYPES = ["modrinth", "spigot", "hangar", "geysermc", "github", "jenkins", "web", "manual"];
|
|
91197
91318
|
});
|
|
91198
91319
|
|
|
91199
91320
|
// src/ui/hooks/useSubscription.ts
|
|
@@ -106142,6 +106263,10 @@ function getPluginIcon2(type2) {
|
|
|
106142
106263
|
return "\uD83C\uDF10";
|
|
106143
106264
|
case "jenkins":
|
|
106144
106265
|
return "\uD83D\uDD27";
|
|
106266
|
+
case "hangar":
|
|
106267
|
+
return "\uD83C\uDFD7";
|
|
106268
|
+
case "geysermc":
|
|
106269
|
+
return "\uD83C\uDF09";
|
|
106145
106270
|
case "manual":
|
|
106146
106271
|
return "\uD83D\uDCC1";
|
|
106147
106272
|
default:
|
|
@@ -123091,6 +123216,9 @@ function createSourceInstances(sourceConfigs) {
|
|
|
123091
123216
|
cacheTtlSeconds: config.cacheExpirySeconds
|
|
123092
123217
|
}));
|
|
123093
123218
|
break;
|
|
123219
|
+
case "geysermc":
|
|
123220
|
+
sources2.push(new GeyserMCSource);
|
|
123221
|
+
break;
|
|
123094
123222
|
}
|
|
123095
123223
|
} catch {}
|
|
123096
123224
|
}
|
|
@@ -123803,13 +123931,13 @@ Completed in ${result.duration}ms`));
|
|
|
123803
123931
|
switch (method) {
|
|
123804
123932
|
case "npm-global":
|
|
123805
123933
|
uninstallExe = "npm";
|
|
123806
|
-
uninstallArgs = ["uninstall", "-g", "pluginator"];
|
|
123807
|
-
displayCmd = "npm uninstall -g pluginator";
|
|
123934
|
+
uninstallArgs = ["uninstall", "-g", "@nindroidsystems/pluginator"];
|
|
123935
|
+
displayCmd = "npm uninstall -g @nindroidsystems/pluginator";
|
|
123808
123936
|
break;
|
|
123809
123937
|
case "bun-global":
|
|
123810
123938
|
uninstallExe = "bun";
|
|
123811
|
-
uninstallArgs = ["remove", "-g", "pluginator"];
|
|
123812
|
-
displayCmd = "bun remove -g pluginator";
|
|
123939
|
+
uninstallArgs = ["remove", "-g", "@nindroidsystems/pluginator"];
|
|
123940
|
+
displayCmd = "bun remove -g @nindroidsystems/pluginator";
|
|
123813
123941
|
break;
|
|
123814
123942
|
case "homebrew":
|
|
123815
123943
|
uninstallExe = "brew";
|
package/dist/config/schema.d.ts
CHANGED
|
@@ -236,7 +236,7 @@ export declare const PluginatorConfigSchema: z.ZodEffects<z.ZodEffects<z.ZodEffe
|
|
|
236
236
|
*/
|
|
237
237
|
export declare const PluginSchema: z.ZodEffects<z.ZodObject<{
|
|
238
238
|
name: z.ZodString;
|
|
239
|
-
type: z.ZodEnum<["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar"]>;
|
|
239
|
+
type: z.ZodEnum<["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar", "geysermc"]>;
|
|
240
240
|
id: z.ZodOptional<z.ZodString>;
|
|
241
241
|
jType: z.ZodOptional<z.ZodString>;
|
|
242
242
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -254,7 +254,7 @@ export declare const PluginSchema: z.ZodEffects<z.ZodObject<{
|
|
|
254
254
|
sourceAssignedAt: z.ZodOptional<z.ZodNumber>;
|
|
255
255
|
registryId: z.ZodOptional<z.ZodString>;
|
|
256
256
|
}, "strip", z.ZodTypeAny, {
|
|
257
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
257
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
258
258
|
name: string;
|
|
259
259
|
disableOnTest: boolean;
|
|
260
260
|
buildFromSource: boolean;
|
|
@@ -273,7 +273,7 @@ export declare const PluginSchema: z.ZodEffects<z.ZodObject<{
|
|
|
273
273
|
sourceAssignedAt?: number | undefined;
|
|
274
274
|
registryId?: string | undefined;
|
|
275
275
|
}, {
|
|
276
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
276
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
277
277
|
name: string;
|
|
278
278
|
id?: string | undefined;
|
|
279
279
|
jType?: string | undefined;
|
|
@@ -292,7 +292,7 @@ export declare const PluginSchema: z.ZodEffects<z.ZodObject<{
|
|
|
292
292
|
sourceAssignedAt?: number | undefined;
|
|
293
293
|
registryId?: string | undefined;
|
|
294
294
|
}>, {
|
|
295
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
295
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
296
296
|
name: string;
|
|
297
297
|
disableOnTest: boolean;
|
|
298
298
|
buildFromSource: boolean;
|
|
@@ -311,7 +311,7 @@ export declare const PluginSchema: z.ZodEffects<z.ZodObject<{
|
|
|
311
311
|
sourceAssignedAt?: number | undefined;
|
|
312
312
|
registryId?: string | undefined;
|
|
313
313
|
}, {
|
|
314
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
314
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
315
315
|
name: string;
|
|
316
316
|
id?: string | undefined;
|
|
317
317
|
jType?: string | undefined;
|
|
@@ -336,7 +336,7 @@ export declare const PluginSchema: z.ZodEffects<z.ZodObject<{
|
|
|
336
336
|
export declare const PluginsConfigSchema: z.ZodObject<{
|
|
337
337
|
plugins: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
338
338
|
name: z.ZodString;
|
|
339
|
-
type: z.ZodEnum<["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar"]>;
|
|
339
|
+
type: z.ZodEnum<["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar", "geysermc"]>;
|
|
340
340
|
id: z.ZodOptional<z.ZodString>;
|
|
341
341
|
jType: z.ZodOptional<z.ZodString>;
|
|
342
342
|
version: z.ZodOptional<z.ZodString>;
|
|
@@ -354,7 +354,7 @@ export declare const PluginsConfigSchema: z.ZodObject<{
|
|
|
354
354
|
sourceAssignedAt: z.ZodOptional<z.ZodNumber>;
|
|
355
355
|
registryId: z.ZodOptional<z.ZodString>;
|
|
356
356
|
}, "strip", z.ZodTypeAny, {
|
|
357
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
357
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
358
358
|
name: string;
|
|
359
359
|
disableOnTest: boolean;
|
|
360
360
|
buildFromSource: boolean;
|
|
@@ -373,7 +373,7 @@ export declare const PluginsConfigSchema: z.ZodObject<{
|
|
|
373
373
|
sourceAssignedAt?: number | undefined;
|
|
374
374
|
registryId?: string | undefined;
|
|
375
375
|
}, {
|
|
376
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
376
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
377
377
|
name: string;
|
|
378
378
|
id?: string | undefined;
|
|
379
379
|
jType?: string | undefined;
|
|
@@ -392,7 +392,7 @@ export declare const PluginsConfigSchema: z.ZodObject<{
|
|
|
392
392
|
sourceAssignedAt?: number | undefined;
|
|
393
393
|
registryId?: string | undefined;
|
|
394
394
|
}>, {
|
|
395
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
395
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
396
396
|
name: string;
|
|
397
397
|
disableOnTest: boolean;
|
|
398
398
|
buildFromSource: boolean;
|
|
@@ -411,7 +411,7 @@ export declare const PluginsConfigSchema: z.ZodObject<{
|
|
|
411
411
|
sourceAssignedAt?: number | undefined;
|
|
412
412
|
registryId?: string | undefined;
|
|
413
413
|
}, {
|
|
414
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
414
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
415
415
|
name: string;
|
|
416
416
|
id?: string | undefined;
|
|
417
417
|
jType?: string | undefined;
|
|
@@ -432,7 +432,7 @@ export declare const PluginsConfigSchema: z.ZodObject<{
|
|
|
432
432
|
}>, "many">;
|
|
433
433
|
}, "strip", z.ZodTypeAny, {
|
|
434
434
|
plugins: {
|
|
435
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
435
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
436
436
|
name: string;
|
|
437
437
|
disableOnTest: boolean;
|
|
438
438
|
buildFromSource: boolean;
|
|
@@ -453,7 +453,7 @@ export declare const PluginsConfigSchema: z.ZodObject<{
|
|
|
453
453
|
}[];
|
|
454
454
|
}, {
|
|
455
455
|
plugins: {
|
|
456
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
456
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
457
457
|
name: string;
|
|
458
458
|
id?: string | undefined;
|
|
459
459
|
jType?: string | undefined;
|
|
@@ -479,7 +479,7 @@ export declare const PluginsConfigSchema: z.ZodObject<{
|
|
|
479
479
|
export declare const SourceConfigSchema: z.ZodObject<{
|
|
480
480
|
id: z.ZodString;
|
|
481
481
|
name: z.ZodString;
|
|
482
|
-
type: z.ZodEnum<["spigot", "modrinth", "github", "bukkit", "web", "jenkins", "ninsys", "hangar", "curseforge"]>;
|
|
482
|
+
type: z.ZodEnum<["spigot", "modrinth", "github", "bukkit", "web", "jenkins", "ninsys", "hangar", "geysermc", "curseforge"]>;
|
|
483
483
|
url: z.ZodString;
|
|
484
484
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
485
485
|
checkIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -491,7 +491,7 @@ export declare const SourceConfigSchema: z.ZodObject<{
|
|
|
491
491
|
cacheExpirySeconds: z.ZodDefault<z.ZodNumber>;
|
|
492
492
|
extraParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
493
493
|
}, "strip", z.ZodTypeAny, {
|
|
494
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "curseforge";
|
|
494
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "geysermc" | "curseforge";
|
|
495
495
|
name: string;
|
|
496
496
|
id: string;
|
|
497
497
|
enabled: boolean;
|
|
@@ -505,7 +505,7 @@ export declare const SourceConfigSchema: z.ZodObject<{
|
|
|
505
505
|
password?: string | undefined;
|
|
506
506
|
extraParams?: Record<string, string> | undefined;
|
|
507
507
|
}, {
|
|
508
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "curseforge";
|
|
508
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "geysermc" | "curseforge";
|
|
509
509
|
name: string;
|
|
510
510
|
id: string;
|
|
511
511
|
url: string;
|
|
@@ -528,7 +528,7 @@ export declare const SourcesConfigSchema: z.ZodObject<{
|
|
|
528
528
|
sources: z.ZodArray<z.ZodObject<{
|
|
529
529
|
id: z.ZodString;
|
|
530
530
|
name: z.ZodString;
|
|
531
|
-
type: z.ZodEnum<["spigot", "modrinth", "github", "bukkit", "web", "jenkins", "ninsys", "hangar", "curseforge"]>;
|
|
531
|
+
type: z.ZodEnum<["spigot", "modrinth", "github", "bukkit", "web", "jenkins", "ninsys", "hangar", "geysermc", "curseforge"]>;
|
|
532
532
|
url: z.ZodString;
|
|
533
533
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
534
534
|
checkIntervalSeconds: z.ZodOptional<z.ZodNumber>;
|
|
@@ -540,7 +540,7 @@ export declare const SourcesConfigSchema: z.ZodObject<{
|
|
|
540
540
|
cacheExpirySeconds: z.ZodDefault<z.ZodNumber>;
|
|
541
541
|
extraParams: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
542
542
|
}, "strip", z.ZodTypeAny, {
|
|
543
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "curseforge";
|
|
543
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "geysermc" | "curseforge";
|
|
544
544
|
name: string;
|
|
545
545
|
id: string;
|
|
546
546
|
enabled: boolean;
|
|
@@ -554,7 +554,7 @@ export declare const SourcesConfigSchema: z.ZodObject<{
|
|
|
554
554
|
password?: string | undefined;
|
|
555
555
|
extraParams?: Record<string, string> | undefined;
|
|
556
556
|
}, {
|
|
557
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "curseforge";
|
|
557
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "geysermc" | "curseforge";
|
|
558
558
|
name: string;
|
|
559
559
|
id: string;
|
|
560
560
|
url: string;
|
|
@@ -571,7 +571,7 @@ export declare const SourcesConfigSchema: z.ZodObject<{
|
|
|
571
571
|
}, "strip", z.ZodTypeAny, {
|
|
572
572
|
version: string;
|
|
573
573
|
sources: {
|
|
574
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "curseforge";
|
|
574
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "geysermc" | "curseforge";
|
|
575
575
|
name: string;
|
|
576
576
|
id: string;
|
|
577
577
|
enabled: boolean;
|
|
@@ -588,7 +588,7 @@ export declare const SourcesConfigSchema: z.ZodObject<{
|
|
|
588
588
|
description?: string | undefined;
|
|
589
589
|
}, {
|
|
590
590
|
sources: {
|
|
591
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "curseforge";
|
|
591
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "ninsys" | "hangar" | "geysermc" | "curseforge";
|
|
592
592
|
name: string;
|
|
593
593
|
id: string;
|
|
594
594
|
url: string;
|
|
@@ -869,7 +869,7 @@ export declare const UserPluginCategorySchema: z.ZodEnum<["admin", "economy", "p
|
|
|
869
869
|
*/
|
|
870
870
|
export declare const UserPluginEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
871
871
|
name: z.ZodString;
|
|
872
|
-
type: z.ZodEnum<["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar"]>;
|
|
872
|
+
type: z.ZodEnum<["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar", "geysermc"]>;
|
|
873
873
|
resourceId: z.ZodOptional<z.ZodString>;
|
|
874
874
|
projectSlug: z.ZodOptional<z.ZodString>;
|
|
875
875
|
repoSlug: z.ZodOptional<z.ZodString>;
|
|
@@ -884,7 +884,7 @@ export declare const UserPluginEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
884
884
|
buildFromSource: z.ZodOptional<z.ZodBoolean>;
|
|
885
885
|
releaseChannel: z.ZodOptional<z.ZodEnum<["release", "beta", "alpha"]>>;
|
|
886
886
|
}, "strip", z.ZodTypeAny, {
|
|
887
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
887
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
888
888
|
name: string;
|
|
889
889
|
resourceId?: string | undefined;
|
|
890
890
|
projectSlug?: string | undefined;
|
|
@@ -900,7 +900,7 @@ export declare const UserPluginEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
900
900
|
category?: "admin" | "economy" | "permissions" | "world" | "gameplay" | "chat" | "protection" | "utility" | "library" | "performance" | "cosmetic" | "minigames" | "social" | "uncategorized" | undefined;
|
|
901
901
|
releaseChannel?: "release" | "beta" | "alpha" | undefined;
|
|
902
902
|
}, {
|
|
903
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
903
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
904
904
|
name: string;
|
|
905
905
|
resourceId?: string | undefined;
|
|
906
906
|
projectSlug?: string | undefined;
|
|
@@ -916,7 +916,7 @@ export declare const UserPluginEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
916
916
|
category?: "admin" | "economy" | "permissions" | "world" | "gameplay" | "chat" | "protection" | "utility" | "library" | "performance" | "cosmetic" | "minigames" | "social" | "uncategorized" | undefined;
|
|
917
917
|
releaseChannel?: "release" | "beta" | "alpha" | undefined;
|
|
918
918
|
}>, {
|
|
919
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
919
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
920
920
|
name: string;
|
|
921
921
|
resourceId?: string | undefined;
|
|
922
922
|
projectSlug?: string | undefined;
|
|
@@ -932,7 +932,7 @@ export declare const UserPluginEntrySchema: z.ZodEffects<z.ZodObject<{
|
|
|
932
932
|
category?: "admin" | "economy" | "permissions" | "world" | "gameplay" | "chat" | "protection" | "utility" | "library" | "performance" | "cosmetic" | "minigames" | "social" | "uncategorized" | undefined;
|
|
933
933
|
releaseChannel?: "release" | "beta" | "alpha" | undefined;
|
|
934
934
|
}, {
|
|
935
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
935
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
936
936
|
name: string;
|
|
937
937
|
resourceId?: string | undefined;
|
|
938
938
|
projectSlug?: string | undefined;
|
|
@@ -956,7 +956,7 @@ export declare const UserPluginRegistrySchema: z.ZodObject<{
|
|
|
956
956
|
lastModified: z.ZodString;
|
|
957
957
|
plugins: z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
958
958
|
name: z.ZodString;
|
|
959
|
-
type: z.ZodEnum<["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar"]>;
|
|
959
|
+
type: z.ZodEnum<["spigot", "modrinth", "github", "jenkins", "bukkit", "web", "manual", "ninsys", "hangar", "geysermc"]>;
|
|
960
960
|
resourceId: z.ZodOptional<z.ZodString>;
|
|
961
961
|
projectSlug: z.ZodOptional<z.ZodString>;
|
|
962
962
|
repoSlug: z.ZodOptional<z.ZodString>;
|
|
@@ -971,7 +971,7 @@ export declare const UserPluginRegistrySchema: z.ZodObject<{
|
|
|
971
971
|
buildFromSource: z.ZodOptional<z.ZodBoolean>;
|
|
972
972
|
releaseChannel: z.ZodOptional<z.ZodEnum<["release", "beta", "alpha"]>>;
|
|
973
973
|
}, "strip", z.ZodTypeAny, {
|
|
974
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
974
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
975
975
|
name: string;
|
|
976
976
|
resourceId?: string | undefined;
|
|
977
977
|
projectSlug?: string | undefined;
|
|
@@ -987,7 +987,7 @@ export declare const UserPluginRegistrySchema: z.ZodObject<{
|
|
|
987
987
|
category?: "admin" | "economy" | "permissions" | "world" | "gameplay" | "chat" | "protection" | "utility" | "library" | "performance" | "cosmetic" | "minigames" | "social" | "uncategorized" | undefined;
|
|
988
988
|
releaseChannel?: "release" | "beta" | "alpha" | undefined;
|
|
989
989
|
}, {
|
|
990
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
990
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
991
991
|
name: string;
|
|
992
992
|
resourceId?: string | undefined;
|
|
993
993
|
projectSlug?: string | undefined;
|
|
@@ -1003,7 +1003,7 @@ export declare const UserPluginRegistrySchema: z.ZodObject<{
|
|
|
1003
1003
|
category?: "admin" | "economy" | "permissions" | "world" | "gameplay" | "chat" | "protection" | "utility" | "library" | "performance" | "cosmetic" | "minigames" | "social" | "uncategorized" | undefined;
|
|
1004
1004
|
releaseChannel?: "release" | "beta" | "alpha" | undefined;
|
|
1005
1005
|
}>, {
|
|
1006
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
1006
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
1007
1007
|
name: string;
|
|
1008
1008
|
resourceId?: string | undefined;
|
|
1009
1009
|
projectSlug?: string | undefined;
|
|
@@ -1019,7 +1019,7 @@ export declare const UserPluginRegistrySchema: z.ZodObject<{
|
|
|
1019
1019
|
category?: "admin" | "economy" | "permissions" | "world" | "gameplay" | "chat" | "protection" | "utility" | "library" | "performance" | "cosmetic" | "minigames" | "social" | "uncategorized" | undefined;
|
|
1020
1020
|
releaseChannel?: "release" | "beta" | "alpha" | undefined;
|
|
1021
1021
|
}, {
|
|
1022
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
1022
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
1023
1023
|
name: string;
|
|
1024
1024
|
resourceId?: string | undefined;
|
|
1025
1025
|
projectSlug?: string | undefined;
|
|
@@ -1038,7 +1038,7 @@ export declare const UserPluginRegistrySchema: z.ZodObject<{
|
|
|
1038
1038
|
}, "strip", z.ZodTypeAny, {
|
|
1039
1039
|
version: 1;
|
|
1040
1040
|
plugins: {
|
|
1041
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
1041
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
1042
1042
|
name: string;
|
|
1043
1043
|
resourceId?: string | undefined;
|
|
1044
1044
|
projectSlug?: string | undefined;
|
|
@@ -1058,7 +1058,7 @@ export declare const UserPluginRegistrySchema: z.ZodObject<{
|
|
|
1058
1058
|
}, {
|
|
1059
1059
|
version: 1;
|
|
1060
1060
|
plugins: {
|
|
1061
|
-
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar";
|
|
1061
|
+
type: "spigot" | "modrinth" | "github" | "jenkins" | "bukkit" | "web" | "manual" | "ninsys" | "hangar" | "geysermc";
|
|
1062
1062
|
name: string;
|
|
1063
1063
|
resourceId?: string | undefined;
|
|
1064
1064
|
projectSlug?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAIH,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAuBxB;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyC/B,CAAC;AA6BL;;GAEG;AACH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../src/config/schema.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin-manager.d.ts","sourceRoot":"","sources":["../../src/core/plugin-manager.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AASH,OAAO,KAAK,EAAE,MAAM,EAAE,gBAAgB,EAAiB,MAAM,kBAAkB,CAAC;AAShF;;GAEG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,OAAO,CAAgB;IAC/B,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,MAAM,CAAS;gBAEX,WAAW,SAAuB;IAI9C;;OAEG;IACG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;
|
|
1
|
+
{"version":3,"file":"plugin-manager.d.ts","sourceRoot":"","sources":["../../src/core/plugin-manager.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AASH,OAAO,KAAK,EAAE,MAAM,EAAE,gBAAgB,EAAiB,MAAM,kBAAkB,CAAC;AAShF;;GAEG;AACH,qBAAa,aAAa;IACxB,OAAO,CAAC,OAAO,CAAgB;IAC/B,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,MAAM,CAAS;gBAEX,WAAW,SAAuB;IAI9C;;OAEG;IACG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IA+B3B;;OAEG;IACG,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC;IAK3B;;OAEG;IACH,MAAM,IAAI,MAAM,EAAE;IAIlB;;OAEG;IACH,SAAS,CAAC,IAAI,EAAE,gBAAgB,GAAG,MAAM,EAAE;IAI3C;;OAEG;IACH,UAAU,IAAI,MAAM,EAAE;IAItB;;OAEG;IACH,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAK5C;;OAEG;IACH,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAIxD;;OAEG;IACH,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAInD;;OAEG;IACH,cAAc,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,SAAS;IAKhD;;OAEG;IACH,GAAG,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI;IASzB;;OAEG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,CAAC,MAAM,CAAC,GAAG,OAAO;IAcvD;;OAEG;IACH,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO;IAY7B;;OAEG;IACH,gBAAgB,IAAI,MAAM,EAAE;IAI5B;;OAEG;IACH,IAAI,KAAK,IAAI,MAAM,CAElB;IAED;;OAEG;IACH,IAAI,QAAQ,IAAI,OAAO,CAEtB;IAED;;;OAGG;IACH,mBAAmB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI;IAwBlD;;OAEG;WACU,MAAM,CAAC,WAAW,SAAuB,GAAG,OAAO,CAAC,aAAa,CAAC;CAKhF;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,gBAAgB,EAAE,OAAO,GAAE,OAAO,CAAC,MAAM,CAAM,GAAG,MAAM,CAQxG;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAiDvD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"registry-download.d.ts","sourceRoot":"","sources":["../../../src/core/registry/registry-download.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,OAAO,EAAE,KAAK,gBAAgB,EAAE,KAAK,cAAc,EAAoB,MAAM,6BAA6B,CAAC;AAC3G,OAAO,KAAK,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,KAAK,EAAE,cAAc,EAAwB,MAAM,qBAAqB,CAAC;AAIhF;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,yDAAyD;IACzD,SAAS,EAAE,MAAM,CAAC;IAClB,qDAAqD;IACrD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,iDAAiD;IACjD,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,qCAAqC;IACrC,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,uBAAuB;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,wBAAwB;IACxB,UAAU,CAAC,EAAE,CAAC,QAAQ,EAAE,gBAAgB,KAAK,IAAI,CAAC;CACnD;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAuB,SAAQ,cAAc;IAC5D,4BAA4B;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,yCAAyC;IACzC,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AAED;;;;GAIG;AACH,qBAAa,uBAAuB;IAClC,OAAO,CAAC,OAAO,CAA6B;gBAEhC,OAAO,EAAE,aAAa,EAAE;IAOpC;;;OAGG;IACG,aAAa,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,GAAE;QAAE,gBAAgB,CAAC,EAAE,MAAM,CAAA;KAAO,GAAG,OAAO,CAAC,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"registry-download.d.ts","sourceRoot":"","sources":["../../../src/core/registry/registry-download.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,OAAO,EAAE,KAAK,gBAAgB,EAAE,KAAK,cAAc,EAAoB,MAAM,6BAA6B,CAAC;AAC3G,OAAO,KAAK,EAAE,aAAa,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AACnE,OAAO,KAAK,EAAE,cAAc,EAAwB,MAAM,qBAAqB,CAAC;AAIhF;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC,yDAAyD;IACzD,SAAS,EAAE,MAAM,CAAC;IAClB,qDAAqD;IACrD,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,iDAAiD;IACjD,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,qCAAqC;IACrC,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,uBAAuB;IACvB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,wBAAwB;IACxB,UAAU,CAAC,EAAE,CAAC,QAAQ,EAAE,gBAAgB,KAAK,IAAI,CAAC;CACnD;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,OAAO,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAuB,SAAQ,cAAc;IAC5D,4BAA4B;IAC5B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,yCAAyC;IACzC,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;CACzB;AAED;;;;GAIG;AACH,qBAAa,uBAAuB;IAClC,OAAO,CAAC,OAAO,CAA6B;gBAEhC,OAAO,EAAE,aAAa,EAAE;IAOpC;;;OAGG;IACG,aAAa,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,GAAE;QAAE,gBAAgB,CAAC,EAAE,MAAM,CAAA;KAAO,GAAG,OAAO,CAAC,aAAa,CAAC;IA4DhH;;OAEG;YACW,iBAAiB;IA+B/B;;OAEG;IACH,OAAO,CAAC,WAAW;IAmBnB;;OAEG;IACG,cAAc,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,EAAE,uBAAuB,GAAG,OAAO,CAAC,sBAAsB,CAAC;IAiD/G;;OAEG;IACG,kBAAkB,CACtB,MAAM,EAAE,cAAc,EACtB,YAAY,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAE,EAAE,EAC7C,OAAO,EAAE,IAAI,CAAC,uBAAuB,EAAE,WAAW,CAAC,GAClD,OAAO,CAAC;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,sBAAsB,CAAA;KAAE,EAAE,CAAC;IAcrE;;OAEG;IACH,SAAS,CAAC,MAAM,EAAE,cAAc,GAAG,OAAO;IAI1C;;OAEG;IACH,mBAAmB,CAAC,MAAM,EAAE,cAAc,GAAG,MAAM,EAAE;CAGtD;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAAC,OAAO,EAAE,aAAa,EAAE,GAAG,uBAAuB,CAE/F"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* GeyserMC Source
|
|
3
|
+
*
|
|
4
|
+
* Fetches plugin information from GeyserMC's download API
|
|
5
|
+
* API: https://download.geysermc.org/v2/
|
|
6
|
+
*
|
|
7
|
+
* @since v2.3.4
|
|
8
|
+
*/
|
|
9
|
+
import type { PluginInfo, SourceType } from '../types/index.js';
|
|
10
|
+
import { BasePluginSource } from './base.js';
|
|
11
|
+
/**
|
|
12
|
+
* GeyserMC download platform identifiers
|
|
13
|
+
*/
|
|
14
|
+
type GeyserMCPlatform = 'bungeecord' | 'fabric' | 'neoforge' | 'spigot' | 'standalone' | 'velocity' | 'viaproxy';
|
|
15
|
+
/**
|
|
16
|
+
* GeyserMCSource implementation
|
|
17
|
+
*/
|
|
18
|
+
export declare class GeyserMCSource extends BasePluginSource {
|
|
19
|
+
readonly id = "geysermc";
|
|
20
|
+
readonly name = "GeyserMC";
|
|
21
|
+
readonly type: SourceType;
|
|
22
|
+
private static readonly API_BASE;
|
|
23
|
+
private platform;
|
|
24
|
+
/**
|
|
25
|
+
* Set the target platform for downloads (default: spigot)
|
|
26
|
+
*/
|
|
27
|
+
setPlatform(platform: GeyserMCPlatform): void;
|
|
28
|
+
/**
|
|
29
|
+
* Get plugin info by project ID (e.g., "geyser", "floodgate")
|
|
30
|
+
*/
|
|
31
|
+
getPluginInfo(projectId: string): Promise<PluginInfo | null>;
|
|
32
|
+
/**
|
|
33
|
+
* Search is not supported by GeyserMC API — returns empty
|
|
34
|
+
*/
|
|
35
|
+
searchPlugins(_query: string, _limit?: number): Promise<PluginInfo[]>;
|
|
36
|
+
/**
|
|
37
|
+
* Get latest version for a project
|
|
38
|
+
*/
|
|
39
|
+
getLatestVersion(projectId: string): Promise<string | null>;
|
|
40
|
+
/**
|
|
41
|
+
* Override headers
|
|
42
|
+
*/
|
|
43
|
+
protected buildHeaders(additional?: Record<string, string>): Record<string, string>;
|
|
44
|
+
/**
|
|
45
|
+
* Get a brief description for known GeyserMC projects
|
|
46
|
+
*/
|
|
47
|
+
private getProjectDescription;
|
|
48
|
+
}
|
|
49
|
+
export {};
|
|
50
|
+
//# sourceMappingURL=geysermc.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"geysermc.d.ts","sourceRoot":"","sources":["../../../src/core/sources/geysermc.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAGH,OAAO,KAAK,EAAE,UAAU,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAChE,OAAO,EAAE,gBAAgB,EAAe,MAAM,WAAW,CAAC;AA0C1D;;GAEG;AACH,KAAK,gBAAgB,GAAG,YAAY,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,UAAU,GAAG,UAAU,CAAC;AAEjH;;GAEG;AACH,qBAAa,cAAe,SAAQ,gBAAgB;IAClD,QAAQ,CAAC,EAAE,cAAc;IACzB,QAAQ,CAAC,IAAI,cAAc;IAC3B,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAc;IAEvC,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAsC;IACtE,OAAO,CAAC,QAAQ,CAA8B;IAE9C;;OAEG;IACH,WAAW,CAAC,QAAQ,EAAE,gBAAgB,GAAG,IAAI;IAI7C;;OAEG;IACG,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC;IAqClE;;OAEG;IACG,aAAa,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAI3E;;OAEG;IACG,gBAAgB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IASjE;;OAEG;cACgB,YAAY,CAAC,UAAU,GAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAM,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC;IAOhG;;OAEG;IACH,OAAO,CAAC,qBAAqB;CAU9B"}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export { SourceRequestBuilder, createSourceRequestBuilder, withRetry, executeWithRetry, isRetryableError, SourceCache as EnhancedSourceCache, createSourceCache, type AuthType, type RequestBuilderOptions, type RetryOptions, type CacheStats, } from './utils/index.js';
|
|
5
5
|
export { createSourceCacheForSource, getCacheService, generateCacheKey, type ISourceCache, type SourceCacheConfig, } from './source-cache-factory.js';
|
|
6
|
-
export { BasePluginSource, SourceCache, SourceError, DEFAULT_REQUEST_OPTIONS } from './base.js';
|
|
6
|
+
export { BasePluginSource, SourceCache, SourceError, DEFAULT_REQUEST_OPTIONS, } from './base.js';
|
|
7
7
|
export { SourceRegistry } from './registry.js';
|
|
8
8
|
export { SourcesService, getSourcesService, createSourcesService, resetSourcesService, type ExtendedSourceConfig, type UserSourceOverride, type UserSourcesConfig, } from './sources-service.js';
|
|
9
9
|
export { SpigotSource } from './spigot.js';
|
|
@@ -14,4 +14,5 @@ export { BukkitSource } from './bukkit.js';
|
|
|
14
14
|
export { JenkinsSource, createJenkinsSource } from './jenkins.js';
|
|
15
15
|
export type { JenkinsSourceOptions } from './jenkins.js';
|
|
16
16
|
export { HangarSource } from './hangar.js';
|
|
17
|
+
export { GeyserMCSource } from './geysermc.js';
|
|
17
18
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/sources/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EACL,oBAAoB,EACpB,0BAA0B,EAC1B,SAAS,EACT,gBAAgB,EAChB,gBAAgB,EAChB,WAAW,IAAI,mBAAmB,EAClC,iBAAiB,EACjB,KAAK,QAAQ,EACb,KAAK,qBAAqB,EAC1B,KAAK,YAAY,EACjB,KAAK,UAAU,GAChB,MAAM,kBAAkB,CAAC;AAG1B,OAAO,EACL,0BAA0B,EAC1B,eAAe,EACf,gBAAgB,EAChB,KAAK,YAAY,EACjB,KAAK,iBAAiB,GACvB,MAAM,2BAA2B,CAAC;AAGnC,OAAO,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/sources/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EACL,oBAAoB,EACpB,0BAA0B,EAC1B,SAAS,EACT,gBAAgB,EAChB,gBAAgB,EAChB,WAAW,IAAI,mBAAmB,EAClC,iBAAiB,EACjB,KAAK,QAAQ,EACb,KAAK,qBAAqB,EAC1B,KAAK,YAAY,EACjB,KAAK,UAAU,GAChB,MAAM,kBAAkB,CAAC;AAG1B,OAAO,EACL,0BAA0B,EAC1B,eAAe,EACf,gBAAgB,EAChB,KAAK,YAAY,EACjB,KAAK,iBAAiB,GACvB,MAAM,2BAA2B,CAAC;AAGnC,OAAO,EACL,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,uBAAuB,GACxB,MAAM,WAAW,CAAC;AAGnB,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAG/C,OAAO,EACL,cAAc,EACd,iBAAiB,EACjB,oBAAoB,EACpB,mBAAmB,EACnB,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,EACvB,KAAK,iBAAiB,GACvB,MAAM,sBAAsB,CAAC;AAG9B,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAC/C,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,iBAAiB,EAAE,uBAAuB,EAAE,MAAM,mBAAmB,CAAC;AAC/E,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,cAAc,CAAC;AAClE,YAAY,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC"}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
/**
|
|
5
5
|
* Supported plugin source types
|
|
6
6
|
*/
|
|
7
|
-
export type PluginSourceType = 'spigot' | 'modrinth' | 'github' | 'jenkins' | 'bukkit' | 'web' | 'manual' | 'ninsys' | 'hangar';
|
|
7
|
+
export type PluginSourceType = 'spigot' | 'modrinth' | 'github' | 'jenkins' | 'bukkit' | 'web' | 'manual' | 'ninsys' | 'hangar' | 'geysermc';
|
|
8
8
|
/**
|
|
9
9
|
* How a source was assigned to a plugin
|
|
10
10
|
* @since v2.2.0
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../src/core/types/plugin.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;GAEG;AACH,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,SAAS,GAAG,QAAQ,GAAG,KAAK,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"plugin.d.ts","sourceRoot":"","sources":["../../../src/core/types/plugin.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,7 +5,7 @@ import type { PluginInfo } from './plugin.js';
|
|
|
5
5
|
/**
|
|
6
6
|
* Supported source types
|
|
7
7
|
*/
|
|
8
|
-
export type SourceType = 'spigot' | 'modrinth' | 'github' | 'bukkit' | 'web' | 'jenkins' | 'ninsys' | 'hangar';
|
|
8
|
+
export type SourceType = 'spigot' | 'modrinth' | 'github' | 'bukkit' | 'web' | 'jenkins' | 'ninsys' | 'hangar' | 'geysermc';
|
|
9
9
|
/**
|
|
10
10
|
* Configuration for a plugin source
|
|
11
11
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"source.d.ts","sourceRoot":"","sources":["../../../src/core/types/source.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAE9C;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"source.d.ts","sourceRoot":"","sources":["../../../src/core/types/source.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AAE9C;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS,GAAG,QAAQ,GAAG,QAAQ,GAAG,UAAU,CAAC;AAE5H;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,UAAU,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,oBAAoB,CAAC,EAAE,MAAM,CAAC;IAC9B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAG5B,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACtC;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,OAAO,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,YAAY,EAAE,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,QAAQ,CAAC,IAAI,EAAE,UAAU,CAAC;IAC1B,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;;OAIG;IACH,aAAa,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAAC;IAE9D;;;;;OAKG;IACH,aAAa,CAAC,KAAK,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC,CAAC;IAEpE;;;;OAIG;IACH,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;IAE7D;;;;OAIG;IACH,wBAAwB,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAAC;IAE9D;;;OAGG;IACH,UAAU,IAAI,IAAI,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED;;GAEG;AACH,MAAM,WAAW,UAAU,CAAC,CAAC;IAC3B,IAAI,EAAE,CAAC,CAAC;IACR,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;CACnB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DevWrapper.d.ts","sourceRoot":"","sources":["../../../src/dev/components/DevWrapper.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;
|
|
1
|
+
{"version":3,"file":"DevWrapper.d.ts","sourceRoot":"","sources":["../../../src/dev/components/DevWrapper.tsx"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AA0DH;;GAEG;AACH,wBAAgB,UAAU,4CA+PzB"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"usePluginEditor.d.ts","sourceRoot":"","sources":["../../../src/ui/hooks/usePluginEditor.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,OAAO,KAAK,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAClG,OAAO,KAAK,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE3E,MAAM,WAAW,iBAAiB;IAChC,0BAA0B;IAC1B,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IAEtB,0BAA0B;IAC1B,QAAQ,EAAE,gBAAgB,CAAC;IAE3B,0EAA0E;IAC1E,cAAc,EAAE,MAAM,CAAC;IAEvB,oCAAoC;IACpC,WAAW,EAAE,OAAO,CAAC;IAErB,oDAAoD;IACpD,cAAc,EAAE,cAAc,GAAG,IAAI,CAAC;IAEtC,sCAAsC;IACtC,eAAe,EAAE,oBAAoB,EAAE,CAAC;IAExC,oDAAoD;IACpD,aAAa,EAAE,MAAM,CAAC;IAEtB,qCAAqC;IACrC,OAAO,EAAE,OAAO,CAAC;IAEjB,8DAA8D;IAC9D,OAAO,EAAE,OAAO,CAAC;IAEjB,sBAAsB;IACtB,OAAO,EAAE,CAAC,IAAI,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAE1C,2BAA2B;IAC3B,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAEvC,wBAAwB;IACxB,UAAU,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAEvC,4CAA4C;IAC5C,oBAAoB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAE9C,yCAAyC;IACzC,eAAe,EAAE,MAAM,IAAI,CAAC;IAE5B,8BAA8B;IAC9B,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAE1C,oDAAoD;IACpD,WAAW,EAAE,MAAM,MAAM,CAAC;IAE1B,uCAAuC;IACvC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,2CAA2C;AAC3C,eAAO,MAAM,YAAY,EAAE,gBAAgB,
|
|
1
|
+
{"version":3,"file":"usePluginEditor.d.ts","sourceRoot":"","sources":["../../../src/ui/hooks/usePluginEditor.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAIH,OAAO,KAAK,EAAE,cAAc,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAClG,OAAO,KAAK,EAAE,MAAM,EAAE,gBAAgB,EAAE,MAAM,4BAA4B,CAAC;AAE3E,MAAM,WAAW,iBAAiB;IAChC,0BAA0B;IAC1B,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;IAEtB,0BAA0B;IAC1B,QAAQ,EAAE,gBAAgB,CAAC;IAE3B,0EAA0E;IAC1E,cAAc,EAAE,MAAM,CAAC;IAEvB,oCAAoC;IACpC,WAAW,EAAE,OAAO,CAAC;IAErB,oDAAoD;IACpD,cAAc,EAAE,cAAc,GAAG,IAAI,CAAC;IAEtC,sCAAsC;IACtC,eAAe,EAAE,oBAAoB,EAAE,CAAC;IAExC,oDAAoD;IACpD,aAAa,EAAE,MAAM,CAAC;IAEtB,qCAAqC;IACrC,OAAO,EAAE,OAAO,CAAC;IAEjB,8DAA8D;IAC9D,OAAO,EAAE,OAAO,CAAC;IAEjB,sBAAsB;IACtB,OAAO,EAAE,CAAC,IAAI,EAAE,gBAAgB,KAAK,IAAI,CAAC;IAE1C,2BAA2B;IAC3B,aAAa,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAEvC,wBAAwB;IACxB,UAAU,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAEvC,4CAA4C;IAC5C,oBAAoB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAE9C,yCAAyC;IACzC,eAAe,EAAE,MAAM,IAAI,CAAC;IAE5B,8BAA8B;IAC9B,gBAAgB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IAE1C,oDAAoD;IACpD,WAAW,EAAE,MAAM,MAAM,CAAC;IAE1B,uCAAuC;IACvC,UAAU,EAAE,MAAM,CAAC;CACpB;AAED,2CAA2C;AAC3C,eAAO,MAAM,YAAY,EAAE,gBAAgB,EAAuF,CAAC;AAEnI,sDAAsD;AACtD,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,gBAAgB,GAAG,MAAM,CAoBrE;AAsBD,wBAAgB,eAAe,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI,GAAG,iBAAiB,CAyI9E"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/ui/utils/icons.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEtD;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf;AAMD,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,WAAW,CAAC;AAE9F;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,cAAc,EAAE,MAAM,EAAE,WAAW,GAAG,aAAa,CAe/F;AAMD,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;AAEnH;;GAEG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,gBAAgB,GAAG,MAAM,
|
|
1
|
+
{"version":3,"file":"icons.d.ts","sourceRoot":"","sources":["../../../src/ui/utils/icons.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEtD;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;CACf;AAMD,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,WAAW,CAAC;AAE9F;;GAEG;AACH,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,cAAc,EAAE,MAAM,EAAE,WAAW,GAAG,aAAa,CAe/F;AAMD,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS,GAAG,QAAQ,GAAG,MAAM,CAAC;AAEnH;;GAEG;AACH,wBAAgB,aAAa,CAAC,IAAI,EAAE,gBAAgB,GAAG,MAAM,CAuB5D;AAMD,MAAM,MAAM,gBAAgB,GAAG,SAAS,GAAG,OAAO,GAAG,SAAS,GAAG,MAAM,CAAC;AAExE;;GAEG;AACH,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,gBAAgB,EAAE,MAAM,EAAE,WAAW,GAAG,aAAa,CAanG"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-check.d.ts","sourceRoot":"","sources":["../../src/workflows/update-check.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAG3C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,KAAK,EAAE,MAAM,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAOtF;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC7D,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAiCD;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,gBAAgB,EAAE,gBAAgB,EAAE,CAAC;IACrC,QAAQ,EAAE,gBAAgB,EAAE,CAAC;IAC7B,MAAM,EAAE,KAAK,CAAC;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACrD,OAAO,EAAE,KAAK,CAAC;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvD,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,CAAC,QAAQ,EAAE,mBAAmB,KAAK,IAAI,CAAC;CACtD;AA+CD;;GAEG;AACH,qBAAa,aAAc,SAAQ,YAAY;IAE3C,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,cAAc;gBADd,aAAa,EAAE,aAAa,EAC5B,cAAc,EAAE,cAAc;IAKxC;;OAEG;IACG,QAAQ,CAAC,OAAO,GAAE,kBAAuB,GAAG,OAAO,CAAC,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"update-check.d.ts","sourceRoot":"","sources":["../../src/workflows/update-check.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAG3C,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAC/D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,KAAK,EAAE,MAAM,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAOtF;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,MAAM,EAAE,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,GAAG,SAAS,CAAC;IAC7D,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAiCD;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC,gBAAgB,EAAE,gBAAgB,EAAE,CAAC;IACrC,QAAQ,EAAE,gBAAgB,EAAE,CAAC;IAC7B,MAAM,EAAE,KAAK,CAAC;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACrD,OAAO,EAAE,KAAK,CAAC;QAAE,UAAU,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvD,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,CAAC,QAAQ,EAAE,mBAAmB,KAAK,IAAI,CAAC;CACtD;AA+CD;;GAEG;AACH,qBAAa,aAAc,SAAQ,YAAY;IAE3C,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,cAAc;gBADd,aAAa,EAAE,aAAa,EAC5B,cAAc,EAAE,cAAc;IAKxC;;OAEG;IACG,QAAQ,CAAC,OAAO,GAAE,kBAAuB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IA0O5E;;OAEG;YACW,iBAAiB;IAqB/B;;OAEG;YACW,aAAa;IAiB3B;;OAEG;IACG,WAAW,CAAC,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;IA8B5D;;OAEG;IACG,kBAAkB,CAAC,aAAa,EAAE,aAAa,EAAE,gBAAgB,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC;IAiC5G;;OAEG;IACH,SAAS,CAAC,cAAc,EAAE,MAAM,EAAE,aAAa,EAAE,MAAM,GAAG,OAAO;IAOjE;;OAEG;IACG,gBAAgB,IAAI,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC;IAUhD;;OAEG;IACG,YAAY,IAAI,OAAO,CAAC,OAAO,CAAC;IAStC;;OAEG;IACG,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;CAIlC;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,aAAa,EAAE,aAAa,EAAE,cAAc,EAAE,cAAc,GAAG,aAAa,CAE/G;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,cAAc,EAAE,cAAc,EAAE,UAAU,EAAE,CAAC,IAAI,EAAE,MAAM,KAAK,MAAM,GAAG,SAAS,GAAG,OAAO,CAAC,gBAAgB,EAAE,CAAC,CAqBvK"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nindroidsystems/pluginator",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
4
|
"description": "A sophisticated Minecraft server plugin manager with multi-source update checking, sync/backup workflows, and a modern terminal UI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|