27 lines
827 B
C#
27 lines
827 B
C#
// 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 |