npm install @lumia/mojang-authenticator
import { Authenticator } from "@lumia/mojang-authenticator"
(async () => {
const auth = new Authenticator();
const res = await auth.authenticate("your-username", "your-password");
console.log(res);
})();