Skip to main content
Version: 1.x

Variable: VERSION

const VERSION: string

Defined in: src/version.ts:34

Package version — injected from package.json at build time.

Remarks

Read at runtime by telemetry (service.version) and user-agent headers.

Example

import { VERSION, PACKAGE_NAME } from './version.js';
logger.info(`${PACKAGE_NAME}@${VERSION}`);