UNPKG

@dreamhorizonorg/sentinel

Version:

Open-source, zero-dependency tool that blocks compromised packages BEFORE download. Built to counter supply chain and credential theft attacks like Shai-Hulud.

16 lines (13 loc) 243 B
/** * ANSI color code constants * Terminal color escape sequences */ export const ANSI_CODES = { RED: '\x1b[31m', GREEN: '\x1b[32m', YELLOW: '\x1b[33m', BLUE: '\x1b[34m', BOLD: '\x1b[1m', DIM: '\x1b[2m', RESET: '\x1b[0m' };