0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:50:43 -05:00

41 lines
1.1 KiB
C#
Raw Normal View History

2023-08-13 20:49:03 -04:00
using System.Collections.Generic;
2023-08-13 11:00:10 -04:00
2024-05-21 20:15:19 +01:00
namespace SPT.Launcher.Models.SPT
2023-08-13 11:00:10 -04:00
{
2024-05-21 20:15:19 +01:00
public class SPTServerModInfo : SPTMod
2023-08-13 11:00:10 -04:00
{
public string Main { get; set; }
public string License { get; set; }
2024-05-21 20:15:19 +01:00
public string SPTVersion { get; set; }
2023-08-13 11:00:10 -04:00
public Dictionary<string, string> Scripts { get; set; }
public DevDependencies DevDependencies { get; set; }
}
}
/*
{
"wafflelord-ZeroToHeroPlus-1.0.0": {
"name": "ZeroToHeroPlus",
"version": "1.0.0",
"main": "src/mod.ts",
"license": "MIT",
"author": "waffle.lord",
2024-05-21 20:15:19 +01:00
"SPTVersion": "~3.6",
2023-08-13 11:00:10 -04:00
"scripts": {
"setup": "npm i",
"build": "node ./packageBuild.ts"
},
"devDependencies": {
"@types/node": "16.18.10",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"bestzip": "2.2.1",
"eslint": "8.30.0",
"fs-extra": "11.1.0",
"glob": "8.0.3",
"tsyringe": "4.7.0",
"typescript": "4.9.4"
}
}
}
*/