# @changesets/config

> Utilities for reading and parsing Changeset's config

Latest version **4.0.0** (published 2026-08-11) · MIT license · 0 weekly downloads

## Install

```sh
npm install @changesets/config
pnpm add @changesets/config
yarn add @changesets/config
bun add @changesets/config
```

## Health

**Score 60/100 (C)** — status: active.

Positive: no vulnerabilities; recently updated; high maintenance score; popular repo.

Warnings: low downloads; no types; no esm support.

## Facts

| | |
|---|---|
| Version | 4.0.0 |
| Published | 2026-08-11 |
| First published | 2019-09-10 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 12386 |
| Maintainers | emmatown, andarist |

## Links

- npm: https://www.npmjs.com/package/@changesets/config
- Repository: https://github.com/changesets/changesets
- npm.io page: https://npm.io/package/@changesets/config

## Recent versions

- 4.0.0 (latest) — 2026-08-11
- 4.0.0-next.10 (next) — 2026-08-10
- 0.0.0-pr1845.8583df5 (pr1845) — 2026-02-18
- 1.7.0-temp.0 (temp) — 2021-12-07
- 4.0.0-next.9 — 2026-08-03
- 4.0.0-next.8 — 2026-07-25
- 4.0.0-next.7 — 2026-07-17
- 4.0.0-next.6 — 2026-07-01
- 4.0.0-next.5 — 2026-05-28
- 4.0.0-next.4 — 2026-05-13
- 4.0.0-next.3 — 2026-05-07
- 4.0.0-next.2 — 2026-05-04
- 3.1.4 — 2026-04-17
- 3.1.3 — 2026-03-03
- 0.0.0-pr1845.c9b6dcf — 2026-02-18
- … 43 more at https://npm.io/package/@changesets/config/versions

## README

# @changesets/config

[![Open on npmx.dev](https://npmx.dev/api/registry/badge/version/@changesets/config?name=true)](https://npmx.dev/package/@changesets/config)
[![View changelog](https://npmx.dev/api/registry/badge/version/@changesets/cli?color=229fe4&value=View+changelog&label=+)](./CHANGELOG.md)

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

## Usage

```ts
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);
```

---
_Source: https://npm.io/package/@changesets/config · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
