2025-11-25 17:10:53 +01:00
|
|
|
import { createRequire } from "node:module";
|
|
|
|
|
|
|
|
|
|
const require = createRequire(import.meta.url);
|
|
|
|
|
const pkg = require("../package.json") as { version?: string };
|
|
|
|
|
|
2025-12-05 17:22:53 +00:00
|
|
|
// Single source of truth for the current clawdis version (reads from package.json).
|
2025-11-25 17:10:53 +01:00
|
|
|
export const VERSION = pkg.version ?? "0.0.0";
|