Determine the `package.json#type` which applies to a location
npm install get-package-typeDetermine the package.json#type which applies to a location.
``js
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 valuecommonjs
found will be returned. Non-truthy values will be reported as .
The argument must be a filename.
`jsdir1/
// This never looks at , 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`.
[npm-image]: https://img.shields.io/npm/v/get-package-type.svg
[npm-url]: https://npmjs.org/package/get-package-type