types-package-json
TypeScript icon, indicating that this package has built-in type declarations

2.0.39 • Public • Published

types-package-json

A handful set of package.json types and interfaces to improve working with dynamically imported package.json files.

Table of contents

  1. Getting Started

  2. Usage

  3. Features

Getting Started

npm i -D types-package-json

Usage

import type { PackageJson } from 'types-package-json';

const packageJsonPath = path.resolve(process.cwd(), `package.json`);
const packageJson: Partial<PackageJson> = await import(packageJsonPath);

Features

Zero overhead - contains only types and interfaces, no actual objects. PackageJson - full package.json interface, name and version is required PackageJsonAddress - optional email and url PackageJsonPerson - required name, optional email and url PackageJsonDependencyTypes - 'dependencies' | 'devDependencies' | 'peerDependencies' | 'optionalDependencies' (bundledDependencies are not included in this type as they serve different purpose).

Package Sidebar

Install

npm i types-package-json

Weekly Downloads

5,338

Version

2.0.39

License

MIT

Unpacked Size

4.91 kB

Total Files

8

Last publish

Collaborators

  • radarsu