humanifyjs
Version:
> Deobfuscate Javascript code using LLMs ("AI")
17 lines (16 loc) • 556 B
JavaScript
#!/usr/bin/env -S npx tsx
import { version } from "../package.json" assert { type: "json" };
import { download } from "./commands/download.js";
import { local } from "./commands/local.js";
import { openai } from "./commands/openai.js";
import { cli } from "./cli.js";
import { azure } from "./commands/gemini.js";
cli()
.name("humanify")
.description("Unminify code using OpenAI's API or a local LLM")
.version(version)
.addCommand(local)
.addCommand(openai)
.addCommand(azure)
.addCommand(download())
.parse(process.argv);