/** * The version this build actually is, read from package.json. * * It used to be a literal in the McpServer constructor, and it said 0.3.2 * while the package was 0.6.0 — three releases stale. Every client that * connected, every registry that scraped us, and every bug report anyone * filed carried the wrong number, and nothing could notice because a literal * is always internally consistent. * * Resolved by walking up from this file rather than by a fixed relative path, * because the same code runs from three different layouts: a repo checkout, * node_modules/jlink-mcp/, and extension/ inside a VSIX. All three have * package.json above out/, at varying depths once bundled. */ export declare function packageVersion(): string; //# sourceMappingURL=version.d.ts.map