UNPKG

llmverify

Version:

AI Output Verification Toolkit — Local-first LLM safety, hallucination detection, PII redaction, prompt injection defense, and runtime monitoring. Zero telemetry. OWASP LLM Top 10 aligned.

39 lines (38 loc) 767 B
#!/usr/bin/env node /** * llmverify - Postinstall Message * Displays a rich, informative banner after npm install * * @module postinstall * @author KingCaliber Labs * @license MIT */ declare const VERSION = "1.0.0"; declare const colors: { reset: string; bright: string; dim: string; cyan: string; green: string; yellow: string; blue: string; magenta: string; white: string; bgBlue: string; bgGreen: string; }; declare const c: { reset: string; bright: string; dim: string; cyan: string; green: string; yellow: string; blue: string; magenta: string; white: string; bgBlue: string; bgGreen: string; }; declare function printBanner(): void; declare const isSilent: boolean;