whodis-mcp-server
Version:
Whodis MCP Server for checking the availability of domain names using WHOIS lookups.
26 lines (25 loc) • 742 B
JavaScript
/**
* Application constants
*
* This file contains constants used throughout the application.
* Centralizing these values makes them easier to maintain and update.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.CLI_NAME = exports.PACKAGE_NAME = exports.VERSION = void 0;
/**
* Current application version
* This should match the version in package.json
* Updated by semantic-release and the update-version script.
*/
exports.VERSION = '1.0.1';
/**
* Package name
* Used for initialization, identification, and global config lookup.
*/
exports.PACKAGE_NAME = 'whodis-mcp-server';
/**
* CLI command name
* Used for binary name and CLI help text
*/
exports.CLI_NAME = 'whodis-mcp-server';
;