UNPKG

pwned

Version:

A command-line tool for querying the 'Have I been pwned?' service.

47 lines (43 loc) 1.42 kB
#!/usr/bin/env node import sourceMapSupport from 'source-map-support'; import yargs from 'yargs'; import { hideBin } from 'yargs/helpers'; import * as apiKey from '../lib/commands/api-key.js'; import * as ba from '../lib/commands/ba.js'; import * as bd from '../lib/commands/bd.js'; import * as breach from '../lib/commands/breach.js'; import * as breaches from '../lib/commands/breaches.js'; import * as dc from '../lib/commands/dc.js'; import * as lb from '../lib/commands/lb.js'; import * as pa from '../lib/commands/pa.js'; import * as pw from '../lib/commands/pw.js'; import * as sd from '../lib/commands/sd.js'; import * as search from '../lib/commands/search.js'; import * as slbe from '../lib/commands/slbe.js'; import * as slbed from '../lib/commands/slbed.js'; import * as slbwd from '../lib/commands/slbwd.js'; import * as subStatus from '../lib/commands/sub-status.js'; sourceMapSupport.install(); // eslint-disable-next-line @typescript-eslint/no-unused-expressions yargs(hideBin(process.argv)) .command(apiKey) .command(ba) .command(bd) .command(breach) .command(breaches) .command(dc) .command(lb) .command(pa) .command(pw) .command(sd) .command(search) .command(slbe) .command(slbed) .command(slbwd) .command(subStatus) .demandCommand() .recommendCommands() .strict() .wrap(Math.min(100, yargs().terminalWidth())) .alias('h', 'help') .alias('v', 'version').argv;