@push.rocks/projectinfo
Version:
gather information about projects. supports npm, git etc.
14 lines (13 loc) • 341 B
TypeScript
import * as plugins from './projectinfo.plugins.js';
export declare class ProjectinfoNpm {
isNpm: boolean;
packageJson: any;
name: string;
version: string;
status: string;
license: string;
git: plugins.smartstring.GitRepo;
constructor(cwdArg: string, optionsArg?: {
gitAccessToken?: string;
});
}