get-package-type (0.1.0)

Published 2026-02-24 13:57:11 +00:00 by atheaadmin

Installation

registry=
npm install get-package-type@0.1.0
"get-package-type": "0.1.0"

About this package

get-package-type NPM Version

Determine the package.json#type which applies to a location.

Usage

const getPackageType = require('get-package-type');

(async () => {
  console.log(await getPackageType('file.js'));
  console.log(getPackageType.sync('file.js'));
})();

This function does not validate the value found in package.json#type. Any truthy value found will be returned. Non-truthy values will be reported as commonjs.

The argument must be a filename.

// This never looks at `dir1/`, first attempts to load `./package.json`.
const type1 = await getPackageType('dir1/');

// This attempts to load `dir1/package.json`.
const type2 = await getPackageType('dir1/index.cjs');

The extension of the filename does not effect the result. The primary use case for this module is to determine if myapp.config.js should be loaded with require or import.

Dependencies

Development Dependencies

ID Version
@cfware/lint ^1.4.3
@cfware/nyc ^0.7.0
if-ver ^1.1.0
libtap ^0.3.0
nyc ^15.0.1
Details
npm
2026-02-24 13:57:11 +00:00
0
Corey Farrell
MIT
latest
2.5 KiB
Assets (1)
Versions (1) View all
0.1.0 2026-02-24