Placeholder npm package for the zig-node project.
npm install zig-nodeThis first release intentionally exposes a tiny placeholder module while the project shape is still being defined.
import metadata, { describe } from "zig-node";
console.log(metadata);
console.log(describe());The npm package is published automatically when a tag matching the package version is pushed. Create the tag after the release commit is available on the remote branch.
git tag v0.0.1
git push origin v0.0.1The publish workflow verifies that the tag version matches package.json, runs the release gate, performs a publish dry run, then publishes to npm using the NPM_TOKEN repository secret.