/**
* Application constants
*
* This file contains constants used throughout the application.
* Centralizing these values makes them easier to maintain and update.
*/
/**
* Current application version
* This should match the version in package.json
* Updated by semantic-release and the update-version script.
*/
export const VERSION = '1.1.1';
/**
* Package name
* Used for initialization, identification, and global config lookup.
*/
export const PACKAGE_NAME = 'whodis-mcp-server';
/**
* CLI command name
* Used for binary name and CLI help text
*/
export const CLI_NAME = 'whodis-mcp-server';