@johnlindquist/file-forge
Version:
File Forge is a powerful CLI tool for deep analysis of codebases, generating markdown reports to feed AI reasoning models.
13 lines • 434 B
JavaScript
import { readFileSync } from "fs";
export function getVersion() {
try {
// Use a URL relative to this module to reliably locate package.json
const pkgPath = new URL("../package.json", import.meta.url);
const pkg = JSON.parse(readFileSync(pkgPath, "utf-8"));
return pkg.version || "0.0.0-development";
}
catch {
return "0.0.0-development";
}
}
//# sourceMappingURL=version.js.map