cli: add missing publishConfig types

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-01-18 01:24:09 +01:00
parent 928a12a9b3
commit 69f67093c4
@@ -44,6 +44,14 @@ export interface ExtendedPackageJSON extends PackageJSON {
typesVersions?: Record<string, Record<string, string[]>>;
files?: string[];
publishConfig?: {
access?: 'public' | 'restricted';
directory?: string;
registry?: string;
alphaTypes?: string;
betaTypes?: string;
};
}
export type ExtendedPackage = {