UNPKG

domainlooker

Version:

A fast CLI and MCP server for inspecting domains: WHOIS/RDAP, DNS, SSL, ports, subdomains, with CSV/JSON export.

7 lines 358 B
import { createRequire } from 'module'; // Single source of truth for the version: read it from package.json at runtime // so a `npm version` bump updates the CLI, MCP server, and --version at once. const require = createRequire(import.meta.url); const pkg = require('../package.json'); export const VERSION = pkg.version; //# sourceMappingURL=version.js.map