API package that exposes functionalities for programmatic scanning of licenses in Node.js projects.
npm install @callstack/licenses!Release
!Deploy Docs
!Unit tests - @callstack/licenses
API package that exposes functionalities for programmatic scanning of licenses in Node.js projects. It is used by the license-kit CLI tool and can be used directly in your Node.js scripts.
- π Scan and aggregate license information from your project dependencies
- π Generate license reports in a format of choice (JSON, Markdown, raw text, AboutLibraries-compatible JSON metadata)
- π Support for both direct and transitive dependencies
``bash`
npm install @callstack/licenses
You can use @callstack/licenses programmatically in your Node.js applications. Here's a basic example of how to use it:
`typescript
import {
Types,
generateAboutLibrariesNPMOutput,
generateLicensePlistNPMOutput,
scanDependencies,
} from '@callstack/licenses';
import * as md from 'ts-markdown-builder';
// apart from dependencies, also include devDependencies, but only from the root package.json;
// also, include all transitive dependencies & optional dependencies
const optionsFactory: Types.ScanPackageOptionsFactory = ({ isRoot }) => ({
includeDevDependencies: isRoot,
includeTransitiveDependencies: true,
includeOptionalDependencies: true,
});
// scan dependencies of a package
const licenses = scanDependencies(packageJsonPath, optionsFactory);
// generate AboutLibraries-compatible JSON metadata
const aboutLibrariesCompatibleReport = generateAboutLibrariesNPMOutput(licenses);
// generate LicensePlist-compatible metadata
const licensePlistReport = generateLicensePlistNPMOutput(licenses, iosProjectPath);
// generate a Markdown report
const markdownString = md
.joinBlocks(
Object.entries(licenses)
.flatMap(([packageKey, { name: packageName, version, author, content, description, file, type, url }]) => [
md.heading(packageName, { level: 2 }),
'\n',
Version: ${version}
\n,URL: ${url}
url ?
\n : '',Author: ${author}
author ?
\n\n : '',Description: ${description}\n
content ?? '',
'\n',
description ? : '',\nFile: ${file}\n
file ? : '',Type: ${type}
type ? : '',`
'\n',
md.horizontalRule,
])
.join('\n'),
)
.toString();
The API documentation is published under: https://callstackincubator.github.io/react-native-legal/api/.
This package is consumed by other packages in the monorepo by its build outputs, so everytime it is modified, you need to rebuild the package. This can be done once by running yarn build, or by running yarn dev to run tsc` in watch mode. All this is described in the Contributing Guide.