Updated package json

This commit is contained in:
Chomp
2025-02-12 19:51:28 +00:00
parent 6d9dc6e7a2
commit 693d393706
2 changed files with 27 additions and 38 deletions
@@ -2,49 +2,19 @@
public record PackageJsonData
{
public List<string>? Incompatibilities
{
get;
set;
}
public List<string>? LoadBefore
{
get;
set;
}
public List<string>? LoadAfter
{
get;
set;
}
public Dictionary<string, string>? Dependencies
{
get;
set;
}
public Dictionary<string, string>? ModDependencies
{
get;
set;
}
public string? Name
{
get;
set;
}
public string? Url
public string? Author
{
get;
set;
}
public string? Author
public List<string>? Contributors
{
get;
set;
@@ -62,13 +32,31 @@ public record PackageJsonData
set;
}
public string? Licence
public List<string>? LoadBefore
{
get;
set;
}
public string? Main
public List<string>? LoadAfter
{
get;
set;
}
public List<string>? IncompatibleMods
{
get;
set;
}
public Dictionary<string, string>? Dependencies
{
get;
set;
}
public string? Url
{
get;
set;
@@ -80,7 +68,7 @@ public record PackageJsonData
set;
}
public List<string>? Contributors
public string? Licence
{
get;
set;
+4 -3
View File
@@ -1,13 +1,14 @@
{
"Name": "1Logging",
"Author": "SPT",
"Contributors": [],
"Version": "1.0.0",
"SptVersion": "~4.0",
"LoadBefore": [],
"LoadAfter": [],
"IncompatibileMods": [],
"IncompatibleMods": [],
"Dependencies": [],
"Url": "https://github.com/sp-tarkov/server-csharp/tree/develop/ExampleMods/Mods",
"IsBundleMod": false,
"Author": "SPT",
"Contributors": [],
"Licence": "MIT"
}