// namespace Types.Models.Spt.Mod; // // public class PackageJsonData // { // export interface IPackageJsonData { // incompatibilities?: string[]; // loadBefore?: string[]; // loadAfter?: string[]; // dependencies?: Record; // modDependencies?: Record; // name: string; // url: string; // author: string; // version: string; // sptVersion: string; // /** We deliberately purge this data */ // scripts: Record; // devDependencies: Record; // licence: string; // main: string; // isBundleMod: boolean; // contributors: string[]; // } // // } // TODO: this will need changing to however we implement it in this project