New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@changesets/config

Package Overview
Dependencies
Maintainers
2
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@changesets/config

Utilities for reading and parsing Changeset's config

Source
npmnpm
Version
4.0.0
Version published
Weekly downloads
3.5M
-20.2%
Maintainers
2
Weekly downloads
 
Created
Source

@changesets/config

Open on npmx.dev View changelog

Utilities for reading and parsing the Changesets config (i.e. .changeset/config.json).

Usage

import { readConfig } from "@changesets/config";

const { config, warnings, errors } = await readConfig(process.cwd());

if (warnings.length !== 0) {
  console.warn(warnings);
}
if (config == null) {
  console.error(errors);
  return;
}

console.log(config);

FAQs

Package last updated on 11 Aug 2026

Related posts