Compare commits

...

3 commits

Author SHA1 Message Date
4d7eb93b88 build: bump patch 2026-06-29 17:36:11 +02:00
2c42f13221 build: bump minor 2026-06-29 15:33:52 +02:00
dd188d087e feat: export types and errors 2026-06-29 15:33:10 +02:00
3 changed files with 4 additions and 1 deletions

View file

@ -1,7 +1,7 @@
{
"name": "node-launcher-kit",
"homepage": "https://github.com/HerozDotExe/node-launcher-kit",
"version": "2.0.0",
"version": "2.1.1",
"description": "A typescript library to install and launch minecraft with or without modloaders.",
"main": "dist/index.js",
"types": "dist/index.d.ts",

View file

@ -1,2 +1,3 @@
export * as core from "./core";
export * from "./launcher";
export {errors, type types} from "./utils"

2
src/utils/index.ts Normal file
View file

@ -0,0 +1,2 @@
export * as errors from "./errors";
export * as types from "./types";