<h1 align="center">package.json validator</h1>

<p align="center">Tools to validate <code>package.json</code> files.</p>

<p align="center">
	<!-- prettier-ignore-start -->
	<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
	<a href="#contributors" target="_blank"><img alt="👪 All Contributors: 39" src="https://img.shields.io/badge/%F0%9F%91%AA_all_contributors-39-21bb42.svg" /></a>
<!-- ALL-CONTRIBUTORS-BADGE:END -->
	<!-- prettier-ignore-end -->
	<a href="https://github.com/JoshuaKGoldberg/package-json-validator/blob/main/.github/CODE_OF_CONDUCT.md" target="_blank"><img alt="🤝 Code of Conduct: Kept" src="https://img.shields.io/badge/%F0%9F%A4%9D_code_of_conduct-kept-21bb42" /></a>
	<a href="https://codecov.io/gh/JoshuaKGoldberg/package-json-validator" target="_blank"><img alt="🧪 Coverage" src="https://img.shields.io/codecov/c/github/JoshuaKGoldberg/package-json-validator?label=%F0%9F%A7%AA%20coverage" /></a>
	<a href="https://github.com/JoshuaKGoldberg/package-json-validator/blob/main/LICENSE.md" target="_blank"><img alt="📝 License: MIT" src="https://img.shields.io/badge/%F0%9F%93%9D_license-MIT-21bb42.svg" /></a>
	<a href="http://npmjs.com/package/package-json-validator" target="_blank"><img alt="📦 npm version" src="https://img.shields.io/npm/v/package-json-validator?color=21bb42&label=%F0%9F%93%A6%20npm" /></a>
	<img alt="💪 TypeScript: Strict" src="https://img.shields.io/badge/%F0%9F%92%AA_typescript-strict-21bb42.svg" />
</p>

## Usage

```shell
npm install package-json-validator
```

```js
import { validate } from "package-json-validator";

validate(/* ... */);
```

For tools that run these validations, see:

- [eslint-plugin-package-json](https://github.com/JoshuaKGoldberg/eslint-plugin-package-json): to detect all violations and keep them warned against via ESLint
- [package-json-validator-cli](https://github.com/JoshuaKGoldberg/package-json-validator-cli): if you want just a one-shot tool to run in the CLI

## Result Types

Following are the types involved in the return type of our granular `validate*` functions.

### Result

The `Result` type, is the common top-level return type for all of our granular `validate*` functions.
It provides rich information about the nature of the issues encountered as part of validating.
For complex objects like `exports`, its tree structure can give information on which parts of the structure have issues.

#### errorMessages: string[]

The full collection of error messages (including errors from child element).
This consists of the `Issue.message` for all of the items in this Result's `issues`, as well as the `message`s of all descendent `issues`.

#### issues: Issue[]

Collection of issues for _this_ object (property or array element).

#### childResults: ChildResult[]

Collection of result objects for child elements (either properties or array elements), if this property is an object or array.

### ChildResult extends Result

Result object for a child (either a property in an object or an element of an array).

#### index: number

The index of this property in relation to its parent's collection (properties or array elements).

### Issue

#### message: string

The message with information about this issue.

## API

### validate(data, options?)

This function validates an entire `package.json` and returns a list of errors, if
any violations are found.

#### Parameters

- `data` packageData object or a JSON-stringified version of the package data.
- `options` is an object with the following:
  ```ts
  interface Options {
  	recommendations?: boolean; // show recommendations
  	warnings?: boolean; // show warnings
  }
  ```

#### Examples

Example using an object:

```js
import { validate } from "package-json-validator";

const packageData = {
	name: "my-package",
	version: "1.2.3",
};

validate(packageData);
```

Example using a string:

```js
import { validate } from "package-json-validator";

const text = JSON.stringify({
	name: "packageJsonValidator",
	version: "0.1.0",
	private: true,
	dependencies: {
		"date-fns": "^2.29.3",
		install: "^0.13.0",
		react: "^18.2.0",
		"react-chartjs-2": "^5.0.1",
		"react-dom": "^18.2.0",
		"react-material-ui-carousel": "^3.4.2",
		"react-multi-carousel": "^2.8.2",
		"react-redux": "^8.0.5",
		"react-router-dom": "^6.4.3",
		"react-scripts": "5.0.1",
		redux: "^4.2.0",
		"styled-components": "^5.3.6",
		"web-vitals": "^2.1.4",
	},
	scripts: {
		start: "react-scripts start",
	},
	eslintConfig: {
		extends: ["react-app", "react-app/jest"],
	},
	browserslist: {
		production: [">0.2%", "not dead", "not op_mini all"],
		development: [
			"last 1 chrome version",
			"last 1 firefox version",
			"last 1 safari version",
		],
	},
});

const data = validate(text);
```

Output for above example:

```js
console.log(data);
// {
//  valid: true,
//   warnings: [
//    'Missing recommended field: description',
//    'Missing recommended field: keywords',
//    'Missing recommended field: bugs',
//    'Missing recommended field: licenses',
//    'Missing recommended field: author',
//    'Missing recommended field: contributors',
//    'Missing recommended field: repository'
//  ],
//  recommendations: [
//    'Missing optional field: homepage',
//    'Missing optional field: engines'
//  ]
// }
```

### validateAuthor(value)

This function validates the value of the `author` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is either a string or an object
- if it's an object, it should include a `name` field and, optionally, `email` and / or `url` fields.
- if present, the `email` and `url` fields should be valid email and url, respectively.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateAuthor } from "package-json-validator";

const packageData = {
	author: {
		email: "b@rubble.com",
		name: "Barney Rubble",
		url: "http://barnyrubble.tumblr.com/",
	},
};

const result = validateAuthor(packageData.author);
```

```ts
import { validateAuthor } from "package-json-validator";

const packageData = {
	author: "Barney Rubble <b@rubble.com> (http://barnyrubble.tumblr.com/)",
};

const result = validateAuthor(packageData.author);
```

### validateBin(value)

This function validates the value of the `bin` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- It should be of type `string` or `object`.
- If it's a `string`, it should be a relative path to an executable file.
- If it's an `object`, it should be a key to string value object, and the values should all be relative paths.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateBin } from "package-json-validator";

const packageData = {
	bin: "./my-cli.js",
};

const result = validateBin(packageData.bin);
```

```ts
import { validateBin } from "package-json-validator";

const packageData = {
	bin: {
		"my-cli": "./my-cli.js",
		"my-dev-cli": "./dev/my-cli.js",
	},
};

const result = validateBin(packageData.bin);
```

### validateBundleDependencies(value)

This function validates the value of the `bundleDependencies` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is either an array or a boolean
- if it's an array, all items should be strings

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateBundleDependencies } from "package-json-validator";

const packageData = {
	bundleDependencies: ["renderized", "super-streams"],
};

const result = validateBundleDependencies(packageData.bundleDependencies);
```

### validateConfig(value)

This function validates the value of the `config` property of a `package.json`.
It takes the value, and validates that it's an object.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateConfig } from "package-json-validator";

const packageData = {
	config: {
		debug: true,
		host: "localhost",
		port: 8080,
	},
};

const result = validateConfig(packageData.config);
```

### validateContributors(value)

This function validates the value of the `contributors` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is an `Array` of objects
- each object in the array should be a "person" object with at least a `name` and optionally `email` and `url`
- the `email` and `url` properties, if present, should be valid email and URL formats.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateContributors } from "package-json-validator";

const packageData = {
	contributors: [
		{
			email: "b@rubble.com",
			name: "Barney Rubble",
			url: "http://barnyrubble.tumblr.com/",
		},
	],
};

const result = validateContributors(packageData.contributors);
```

### validateCpu(value)

This function validates the value of the `cpu` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is an array
- all items in the array should be one of the following:

"arm", "arm64", "ia32", "loong64", "mips", "mipsel", "ppc64", "riscv64", "s390", "s390x", "x64"

> [!NOTE]
> These values are the list of possible `process.arch` values [documented by Node](https://nodejs.org/api/process.html#processarch).

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateCpu } from "package-json-validator";

const packageData = {
	cpu: ["x64", "ia32"],
};

const result = validateCpu(packageData.cpu);
```

### validateDependencies(value)

Also: `validateDevDependencies(value)`, `validateOptionalDependencies(value)`, and `validatePeerDependencies(value)`

These functions validate the value of their respective `dependency` property.
They take the value, and validate it against the following criteria.

- It should be of type an `object`.
- The object should be a record of key value pairs
- For each property, the key should be a valid package name, and the value should be a valid version

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateDependencies } from "package-json-validator";

const packageData = {
	dependencies: {
		"@catalog/package": "catalog:",
		"@my/package": "^1.2.3",
		"@workspace/package": "workspace:^",
	},
};

const result = validateDependencies(packageData.dependencies);
```

### validateDescription(value)

This function validates the value of the `description` property of a `package.json`, checking that the value is a non-empty string.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateDescription } from "package-json-validator";

const packageData = {
	description: "The Fragile",
};

const result = validateDescription(packageData.description);
```

### validateDirectories(value)

This function validates the value of the `directories` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is an object
- its keys are non-empty strings
- its values are all non-empty strings

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateDirectories } from "package-json-validator";

const packageData = {
	directories: {
		bin: "dist/bin",
		man: "docs",
	},
};

const result = validateDirectories(packageData.directories);
```

### validateEngines(value)

This function validates the value of the `engines` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- It should be of type `object`.
- It should be a key to string value object, and the values should all be non-empty.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateEngines } from "package-json-validator";

const packageData = {
	engines: {
		node: "^20.19.0 || >=22.12.0",
	},
};

const result = validateEngines(packageData.engines);
```

### validateExports(value)

This function validates the value of the `exports` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- It should be of type `string` or `object`.
- If it's a `string`, it should be a path to an entry point.
- If it's an export condition `object`, its properties should have values that are either a path to an entry point, or another exports condition object.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateExports } from "package-json-validator";

const packageData = {
	exports: "./index.js",
};

const result = validateExports(packageData.exports);
```

```ts
import { validateExports } from "package-json-validator";

const packageData = {
	exports: {
		".": {
			types: "./index.d.ts",
			default: "./index.js",
		},
		"./secondary": {
			types: "./secondary.d.ts",
			default: "./secondary.js",
		},
	},
};

const result = validateExports(packageData.exports);
```

### validateFiles(value)

This function validates the value of the `files` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is an array
- all items in the array should be non-empty strings

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateFiles } from "package-json-validator";

const packageData = {
	files: ["dist", "CHANGELOG.md"],
};

const result = validateFiles(packageData.files);
```

### validateHomepage(value)

This function validates the value of the `homepage` property of a `package.json`, checking that the value is a string containing a valid url.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateHomepage } from "package-json-validator";

const packageData = {
	homepage: "The Fragile",
};

const result = validateDescription(packageData.homepage);
```

### validateKeywords(value)

This function validates the value of the `keywords` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is an array
- all items in the array should be non-empty strings

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateKeywords } from "package-json-validator";

const packageData = {
	keywords: ["eslint", "package.json"],
};

const result = validateKeywords(packageData.keywords);
```

### validateLicense(value)

This function validates the value of the `license` property of a `package.json`.
It takes the value, and validates it using `validate-npm-package-license`, which is the same package that npm uses.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateLicense } from "package-json-validator";

const packageData = {
	license: "MIT",
};

const result = validateLicense(packageData.license);
```

### validateMain(value)

This function validates the value of the `main` property of a `package.json`, checking that the value is a non-empty string.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateMain } from "package-json-validator";

const packageData = {
	main: "index.js",
};

const result = validateMain(packageData.main);
```

### validateMan(value)

This function validates the value of the `man` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is either a string or an array of strings
- the string(s) must end in a number (and optionally .gz)

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateMan } from "package-json-validator";

const packageData = {
	man: ["./man/foo.1", "./man/bar.1"],
};

const result = validateMan(packageData.man);
```

### validateName(value)

This function validates the value of the `name` property of a `package.json`.
It takes the value, and validates it using `validate-npm-package-name`, which is the same package that npm uses.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateName } from "package-json-validator";

const packageData = {
	name: "some-package",
};

const result = validateName(packageData.name);
```

### validateOs(value)

This function validates the value of the `os` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is an array
- all items in the array should be one of the following:

"aix", "android", "darwin", "freebsd", "linux", "openbsd", "sunos", and "win32"

> [!NOTE]
> These values are the list of possible `process.platform` values [documented by Node](https://nodejs.org/api/process.html#processplatform).

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateOs } from "package-json-validator";

const packageData = {
	os: ["linux", "win32"],
};

const result = validateOs(packageData.os);
```

### validatePrivate(value)

This function validates the value of the `private` property of a `package.json`.
It takes the value, and checks that it's a boolean.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validatePrivate } from "package-json-validator";

const packageData = {
	private: true,
};

const result = validatePrivate(packageData.private);
```

### validatePublishConfig(value)

This function validates the value of the `publishConfig` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is an object
- if any of the following properties are present, they should conform to the type defined by the package manager
  - access
  - bin
  - cpu
  - directory
  - exports
  - main
  - provenance
  - tag

> [!NOTE]
> These properties are a (non-exhaustive) combination of those supported by `npm`, `pnpm`, and `yarn`.
>
> - <https://docs.npmjs.com/cli/v11/commands/npm-publish#configuration>
> - <https://pnpm.io/package_json#publishconfig>
> - <https://yarnpkg.com/configuration/manifest#publishConfig>

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validatePublishConfig } from "package-json-validator";

const packageData = {
	publishConfig: {
		provenance: true,
	},
};

const result = validatePublishConfig(packageData.publishConfig);
```

### validateRepository(value)

This function validates the value of the `repository` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- It should be of type `object` or `string`.
- If it's an `object`, it should have `type`, `url`, and optionally `directory`.
- `type` and `directory` (if present) should be non-empty strings
- `url` should be a valid repo url
- If it's a `string`, it should be the shorthand repo string from a supported provider.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateRepository } from "package-json-validator";

const packageData = {
	repository: {
		type: "git",
		url: "git+https://github.com/JoshuaKGoldberg/package-json-validator.git",
		directory: "packages/package-json-validator",
	},
};

const result = validateRepository(packageData.repository);
```

```ts
import { validateRepository } from "package-json-validator";

const packageData = {
	repository: "github:JoshuaKGoldberg/package-json-validator",
};

const result = validateRepository(packageData.repository);
```

### validateScripts(value)

This function validates the value of the `scripts` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is an object
- its keys are non-empty strings
- its values are all non-empty strings

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateScripts } from "package-json-validator";

const packageData = {
	scripts: {
		build: "rollup -c",
		lint: "eslint .",
		test: "vitest",
	},
};

const result = validateScripts(packageData.scripts);
```

### validateSideEffects(value)

This function validates the value of the `sideEffects` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- The value is either a boolean or an Array.
- If it's an array, all items should be non-empty strings.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateSideEffects } from "package-json-validator";

const packageData = {
	sideEffects: false,
};

const result = validateSideEffects(packageData.sideEffects);
```

### validateType(value)

This function validates the value of the `type` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is a string
- its value is either `'commonjs'` or `'module'`

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateType } from "package-json-validator";

const packageData = {
	type: "module",
};

const result = validateType(packageData.type);
```

### validateVersion(value)

This function validates the value of the `version` property of a `package.json`.
It takes the value, and validates it using `semver`, which is the same package that npm uses.

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateVersion } from "package-json-validator";

const packageData = {
	version: "1.2.3",
};

const result = validateVersion(packageData.version);
```

### validateWorkspaces(value)

This function validates the value of the `workspaces` property of a `package.json`.
It takes the value, and validates it against the following criteria.

- the property is an array
- all items in the array should be non-empty strings

It returns a `Result` object (See [Result Types](#result-types)).

#### Examples

```ts
import { validateWorkspaces } from "package-json-validator";

const packageData = {
	workspaces: ["./app", "./packages/*"],
};

const result = validateWorkspaces(packageData.cpu);
```

## Specification

This package uses the `npm` [spec](https://docs.npmjs.com/cli/configuring-npm/package-json) along with additional [supporting documentation from node](https://nodejs.org/api/packages.html), as its source of truth for validation.

## Deprecation Policy

We never _want_ to remove things, when we're building them!
But the reality is that libraries evolve and deprecations are a fact of life.
Following are the different timeframes that we've defined as it relates to deprecating APIs in this project.

### RFC Timeframe (6 weeks)

When some aspect of our API is going to be deprecated (and eventually removed), it must initially go through an RFC phase.
Whoever's motivating the removal of the api, should create an RFC issue explaining the proposal and inviting feedback from the community.
That RFC should remain active for at least 6 weeks.
The RFC text should make clear what the target date is for closing the RFC.
Once the RFC period is over, if the removal is still moving forward, the API(s) should be officially deprecated.

### Removal Timeframe (6 months)

Once an API has been marked as deprecated, it will remain intact for at least 6 months.
After 6 months from the date of deprecation, the API is subject to removal.

## Development

See [`.github/CONTRIBUTING.md`](./.github/CONTRIBUTING.md), then [`.github/DEVELOPMENT.md`](./.github/DEVELOPMENT.md).
Thanks! 💖

## Contributors

<!-- spellchecker: disable -->
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
<!-- prettier-ignore-start -->
<table>
  <tbody>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://alan.norbauer.com/"><img src="https://avatars.githubusercontent.com/u/1009?v=4?s=100" width="100px;" alt="Alan"/><br /><sub><b>Alan</b></sub></a><br /><a href="#ideas-altano" title="Ideas, Planning, & Feedback">🤔</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://amilajack.com/"><img src="https://avatars.githubusercontent.com/u/6374832?v=4?s=100" width="100px;" alt="Amila Welihinda"/><br /><sub><b>Amila Welihinda</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=amilajack" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://brekken.com/"><img src="https://avatars.githubusercontent.com/u/843958?v=4?s=100" width="100px;" alt="Andreas Brekken"/><br /><sub><b>Andreas Brekken</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=abrkn" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://gitlab.com/4U6U57"><img src="https://avatars.githubusercontent.com/u/4676561?v=4?s=100" width="100px;" alt="August Valera"/><br /><sub><b>August Valera</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=4U6U57" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://azat.io"><img src="https://avatars.githubusercontent.com/u/5698350?v=4?s=100" width="100px;" alt="Azat S."/><br /><sub><b>Azat S.</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=azat-io" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/anomiex"><img src="https://avatars.githubusercontent.com/u/1030580?v=4?s=100" width="100px;" alt="Brad Jorsch"/><br /><sub><b>Brad Jorsch</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=anomiex" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://brett-zamir.me/"><img src="https://avatars.githubusercontent.com/u/20234?v=4?s=100" width="100px;" alt="Brett Zamir"/><br /><sub><b>Brett Zamir</b></sub></a><br /><a href="#ideas-brettz9" title="Ideas, Planning, & Feedback">🤔</a></td>
    </tr>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="http://www.chrismontgomery.info/"><img src="https://avatars.githubusercontent.com/u/232356?v=4?s=100" width="100px;" alt="Chris Montgomery"/><br /><sub><b>Chris Montgomery</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=chmontgomery" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://www.claycarpenter.us/"><img src="https://avatars.githubusercontent.com/u/550902?v=4?s=100" width="100px;" alt="Clay Carpenter"/><br /><sub><b>Clay Carpenter</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=claycarpenter" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://danielbayley.dev"><img src="https://avatars.githubusercontent.com/u/7797479?v=4?s=100" width="100px;" alt="Daniel Bayley"/><br /><sub><b>Daniel Bayley</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3Adanielbayley" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://foobar.social/web/@davglass"><img src="https://avatars.githubusercontent.com/u/32551?v=4?s=100" width="100px;" alt="Dav Glass"/><br /><sub><b>Dav Glass</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=davglass" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://ddy.su"><img src="https://avatars.githubusercontent.com/u/14067329?v=4?s=100" width="100px;" alt="Denis"/><br /><sub><b>Denis</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=de-don" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/DjDCH"><img src="https://avatars.githubusercontent.com/u/1269117?v=4?s=100" width="100px;" alt="DjDCH"/><br /><sub><b>DjDCH</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3ADjDCH" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://lishaduck.github.io"><img src="https://avatars.githubusercontent.com/u/88557639?v=4?s=100" width="100px;" alt="Eli"/><br /><sub><b>Eli</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3Alishaduck" title="Bug reports">🐛</a> <a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=lishaduck" title="Code">💻</a></td>
    </tr>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://www.ericcornelissen.dev/"><img src="https://avatars.githubusercontent.com/u/3742559?v=4?s=100" width="100px;" alt="Eric Cornelissen"/><br /><sub><b>Eric Cornelissen</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3Aericcornelissen" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/gtanner"><img src="https://avatars.githubusercontent.com/u/317051?v=4?s=100" width="100px;" alt="Gord Tanner"/><br /><sub><b>Gord Tanner</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=gtanner" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://hannah.wf"><img src="https://avatars.githubusercontent.com/u/101513?v=4?s=100" width="100px;" alt="Hannah Wolfe"/><br /><sub><b>Hannah Wolfe</b></sub></a><br /><a href="#ideas-erisds" title="Ideas, Planning, & Feedback">🤔</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://h3manth.com/"><img src="https://avatars.githubusercontent.com/u/18315?v=4?s=100" width="100px;" alt="Hemanth HM"/><br /><sub><b>Hemanth HM</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=hemanth" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://rob.gant.ninja/"><img src="https://avatars.githubusercontent.com/u/710553?v=4?s=100" width="100px;" alt="J Rob Gant"/><br /><sub><b>J Rob Gant</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3Argant" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://staxmanade.com/"><img src="https://avatars.githubusercontent.com/u/156715?v=4?s=100" width="100px;" alt="Jason Jarrett"/><br /><sub><b>Jason Jarrett</b></sub></a><br /><a href="#ideas-staxmanade" title="Ideas, Planning, & Feedback">🤔</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://jasonkarns.com"><img src="https://avatars.githubusercontent.com/u/119972?v=4?s=100" width="100px;" alt="Jason Karns"/><br /><sub><b>Jason Karns</b></sub></a><br /><a href="#ideas-jasonkarns" title="Ideas, Planning, & Feedback">🤔</a></td>
    </tr>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/jatin"><img src="https://avatars.githubusercontent.com/u/1121748?v=4?s=100" width="100px;" alt="Jatin Chopra"/><br /><sub><b>Jatin Chopra</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=jatin" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://www.joshuakgoldberg.com/"><img src="https://avatars.githubusercontent.com/u/3335181?v=4?s=100" width="100px;" alt="Josh Goldberg ✨"/><br /><sub><b>Josh Goldberg ✨</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3AJoshuaKGoldberg" title="Bug reports">🐛</a> <a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=JoshuaKGoldberg" title="Code">💻</a> <a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=JoshuaKGoldberg" title="Documentation">📖</a> <a href="#ideas-JoshuaKGoldberg" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-JoshuaKGoldberg" title="Maintenance">🚧</a> <a href="#tool-JoshuaKGoldberg" title="Tools">🔧</a> <a href="#content-JoshuaKGoldberg" title="Content">🖋</a> <a href="#infra-JoshuaKGoldberg" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#projectManagement-JoshuaKGoldberg" title="Project Management">📆</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/anudeep586"><img src="https://avatars.githubusercontent.com/u/61861542?v=4?s=100" width="100px;" alt="L N M Anudeep"/><br /><sub><b>L N M Anudeep</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=anudeep586" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://linus.xn--unnebck-9wa.se/"><img src="https://avatars.githubusercontent.com/u/189580?v=4?s=100" width="100px;" alt="Linus Unnebäck"/><br /><sub><b>Linus Unnebäck</b></sub></a><br /><a href="#maintenance-LinusU" title="Maintenance">🚧</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://holloway.co.nz/"><img src="https://avatars.githubusercontent.com/u/620580?v=4?s=100" width="100px;" alt="Matthew Holloway"/><br /><sub><b>Matthew Holloway</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3Aholloway" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://morrisoncole.co.uk"><img src="https://avatars.githubusercontent.com/u/963368?v=4?s=100" width="100px;" alt="Morrison Cole"/><br /><sub><b>Morrison Cole</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3AMorrisonCole" title="Bug reports">🐛</a> <a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=MorrisonCole" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/TechNickAI"><img src="https://avatars.githubusercontent.com/u/142708?v=4?s=100" width="100px;" alt="Nick Sullivan"/><br /><sub><b>Nick Sullivan</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3ATechNickAI" title="Bug reports">🐛</a> <a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=TechNickAI" title="Code">💻</a> <a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=TechNickAI" title="Documentation">📖</a> <a href="#ideas-TechNickAI" title="Ideas, Planning, & Feedback">🤔</a> <a href="#maintenance-TechNickAI" title="Maintenance">🚧</a></td>
    </tr>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/normful"><img src="https://avatars.githubusercontent.com/u/2453169?v=4?s=100" width="100px;" alt="Norman Sue"/><br /><sub><b>Norman Sue</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3Anormful" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://about.me/peterdehaan"><img src="https://avatars.githubusercontent.com/u/557895?v=4?s=100" width="100px;" alt="Peter deHaan"/><br /><sub><b>Peter deHaan</b></sub></a><br /><a href="#ideas-pdehaan" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=pdehaan" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://reggi.com/"><img src="https://avatars.githubusercontent.com/u/296798?v=4?s=100" width="100px;" alt="Reggi"/><br /><sub><b>Reggi</b></sub></a><br /><a href="#ideas-reggi" title="Ideas, Planning, & Feedback">🤔</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://dsebastien.net/"><img src="https://avatars.githubusercontent.com/u/89887?v=4?s=100" width="100px;" alt="Sebastien Dubois"/><br /><sub><b>Sebastien Dubois</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=dsebastien" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="http://www.sdealmeida.com/"><img src="https://avatars.githubusercontent.com/u/1103528?v=4?s=100" width="100px;" alt="Simon"/><br /><sub><b>Simon</b></sub></a><br /><a href="#ideas-sdalmeida" title="Ideas, Planning, & Feedback">🤔</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/slavafomin"><img src="https://avatars.githubusercontent.com/u/1702725?v=4?s=100" width="100px;" alt="Slava Fomin II"/><br /><sub><b>Slava Fomin II</b></sub></a><br /><a href="#ideas-slavafomin" title="Ideas, Planning, & Feedback">🤔</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/hyoban"><img src="https://avatars.githubusercontent.com/u/38493346?v=4?s=100" width="100px;" alt="Stephen Zhou"/><br /><sub><b>Stephen Zhou</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=hyoban" title="Code">💻</a></td>
    </tr>
    <tr>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/vkrol"><img src="https://avatars.githubusercontent.com/u/153412?v=4?s=100" width="100px;" alt="Veniamin Krol"/><br /><sub><b>Veniamin Krol</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=vkrol" title="Code">💻</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/gramergrater"><img src="https://avatars.githubusercontent.com/u/9351863?v=4?s=100" width="100px;" alt="gramergrater"/><br /><sub><b>gramergrater</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3Agramergrater" title="Bug reports">🐛</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/michaelfaith"><img src="https://avatars.githubusercontent.com/u/8071845?v=4?s=100" width="100px;" alt="michael faith"/><br /><sub><b>michael faith</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=michaelfaith" title="Code">💻</a> <a href="#ideas-michaelfaith" title="Ideas, Planning, & Feedback">🤔</a> <a href="#infra-michaelfaith" title="Infrastructure (Hosting, Build-Tools, etc)">🚇</a> <a href="#tool-michaelfaith" title="Tools">🔧</a> <a href="#maintenance-michaelfaith" title="Maintenance">🚧</a> <a href="https://github.com/JoshuaKGoldberg/package-json-validator/issues?q=author%3Amichaelfaith" title="Bug reports">🐛</a> <a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=michaelfaith" title="Documentation">📖</a></td>
      <td align="center" valign="top" width="14.28%"><a href="https://github.com/sarahhagstrom"><img src="https://avatars.githubusercontent.com/u/1223862?v=4?s=100" width="100px;" alt="sarahhagstrom"/><br /><sub><b>sarahhagstrom</b></sub></a><br /><a href="https://github.com/JoshuaKGoldberg/package-json-validator/commits?author=sarahhagstrom" title="Code">💻</a></td>
    </tr>
  </tbody>
</table>

<!-- prettier-ignore-end -->

<!-- ALL-CONTRIBUTORS-LIST:END -->
<!-- spellchecker: enable -->

## Appreciation

Many thanks to [@TechNickAI](https://github.com/TechNickAI) for creating the initial version and core infrastructure of this package! 💖

> 💝 This package was templated with [`create-typescript-app`](https://github.com/JoshuaKGoldberg/create-typescript-app) using the [Bingo framework](https://create.bingo).
