@xorddotcom/shield
Version:
p align="center" > <img src="https://xord.notion.site/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F283b98b7-fdae-4e5a-acaf-248242084e4a%2FICON.png?table=block&id=5306223c-a4f7-45d1-9f54-b9a5f4004cd6&spaceId=49976899-64a1-40f
14 lines • 540 B
TypeScript
export interface PackageJson {
name: string;
version: string;
engines: {
node: string;
};
}
export declare const getPackageRoot: () => string;
export declare const getPackageJsonPath: () => string | undefined;
export declare const getPackageJson: () => Promise<PackageJson>;
export declare const findClosestPackageJson: (file: string) => string | undefined;
export declare function getShieldVersion(): any;
export declare const getInputJson: (input: string) => Promise<any>;
//# sourceMappingURL=packageInfo.d.ts.map