UNPKG

invictus

Version:

A cli based password manager application, also has a web interface for doing things

13 lines (11 loc) 394 B
#!/usr/bin/env node import './src/command.js'; import updateNotifier from "update-notifier"; import fs from "fs"; import { fileURLToPath } from "url"; import { dirname, join } from "path"; const __dirname = dirname(fileURLToPath(import.meta.url)); const packageJson = JSON.parse( fs.readFileSync(join(__dirname, "./package.json"), "utf8") ); updateNotifier({ pkg: packageJson }).notify();