The ClipNuke npm library that exports a single ClipNuke object.
You must be authenticated with clipnuke.org (ClipNuke CORE) before accessing paid features.
Use the CLI or your app flow to obtain/store a JWT; set it via ClipNuke.paywall.setToken(token).
import ClipNuke from "@clipnuke/clipnuke";
ClipNuke.paywall.setToken(process.env.CLIPNUKE_JWT);
if (await ClipNuke.paywall.isEnabled('feature.aiImage2Text')) {
// do the thing
}