addded more types, some are unfinished, ill come back to these tomorrow

This commit is contained in:
CWX
2025-01-06 00:32:55 +00:00
parent 529b091029
commit 2f997f6a85
53 changed files with 1938 additions and 12 deletions
+27
View File
@@ -0,0 +1,27 @@
// namespace Types.Models.Spt.Mod;
//
// public class PackageJsonData
// {
// export interface IPackageJsonData {
// incompatibilities?: string[];
// loadBefore?: string[];
// loadAfter?: string[];
// dependencies?: Record<string, string>;
// modDependencies?: Record<string, string>;
// name: string;
// url: string;
// author: string;
// version: string;
// sptVersion: string;
// /** We deliberately purge this data */
// scripts: Record<string, string>;
// devDependencies: Record<string, string>;
// licence: string;
// main: string;
// isBundleMod: boolean;
// contributors: string[];
// }
//
// }
// TODO: this will need changing to however we implement it in this project