Variable: VERSION
constVERSION:string="0.0.4"
Library version string, kept in lockstep with package.json#version.
Changesets owns the bump and rewrites package.json only, so the release version script runs
scripts/sync-version.mjs to rewrite this declaration in the same commit, and
test/sanity.test.ts compares the two so a skipped sync goes red instead of shipping a version
string that lies.
Example
import { VERSION } from "@cosyte/astm";
console.log(VERSION);