
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@bonvoy/core
Advanced tools
Core hook system for bonvoy release automation
The heart of bonvoy - provides the plugin architecture, configuration system, and workspace detection for npm monorepos.
npm install @bonvoy/core
import { Bonvoy, BonvoyPlugin } from '@bonvoy/core';
class MyPlugin implements BonvoyPlugin {
name = 'my-plugin';
apply(bonvoy: Bonvoy) {
bonvoy.hooks.beforeShipIt.tap(this.name, (context) => {
console.log('Starting release...');
});
}
}
const bonvoy = new Bonvoy();
bonvoy.use(new MyPlugin());
import { loadConfig } from '@bonvoy/core';
const config = await loadConfig();
console.log(config.versioning); // 'independent' | 'fixed'
import { detectWorkspaces } from '@bonvoy/core';
const packages = await detectWorkspaces('/path/to/monorepo');
console.log(packages.map(p => p.name));
Available hooks for plugins:
beforeShipIt - Before starting release processvalidateRepo - Validate repository stategetVersion - Determine version bump for packagesversion - Apply version changesafterVersion - After version changes appliedbeforeChangelog - Before generating changeloggenerateChangelog - Generate changelog contentafterChangelog - After changelog generatedbeforePublish - Before publishing packagespublish - Publish packagesafterPublish - After packages publishedbeforeRelease - Before creating releasesmakeRelease - Create releasesafterRelease - After releases createdinterface BonvoyConfig {
versioning?: 'independent' | 'fixed';
rootVersionStrategy?: 'max' | 'patch' | 'none';
commitMessage?: string;
tagFormat?: string;
changelog?: {
global?: boolean;
sections?: Record<string, string>;
};
workflow?: 'direct' | 'pr';
baseBranch?: string;
plugins?: (string | [string, object])[];
}
MIT
FAQs
🚢 Core hook system for bonvoy release automation
We found that @bonvoy/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.