You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "TypeScript-first developer supertool — a Rust CLI that augments your Node.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nubjs/nub.git"
},
"homepage": "https://github.com/nubjs/nub",
"bugs": {
"url": "https://github.com/nubjs/nub/issues"
},
"engines": {
"node": ">=22.15.0"
},
"comment": "@oxc-project/runtime is pinned to an EXACT version (no caret) and MUST match the oxc version compiled into nub's native addon (crates/nub-native, see OXC_VERSION in Cargo.toml) — it supplies the transpile emit's runtime helpers (e.g. usingCtx for `using` down-leveling), so it is one half of an oxc release whose other half (the transformer + parser) is now native, not an npm package. The transpiler and TS/JSX detection moved in-process to nub-native, so oxc-transform and oxc-parser are no longer dependencies; only the helper-runtime package remains, imported by transpiled user code via VENDORED_PACKAGES. NUB_VERSION is the sole transpile-cache-busting key (runtime/preload.mjs); `make version` bumps it and rebuilds the addon, keeping the cache invariant 'the transpiler version is a pure function of the nub version'. Bump @oxc-project/runtime in lockstep with the addon's oxc pin. See wiki/runtime/transpile-cache.md.",