@reliverse/rse-sdk
Version:
@reliverse/rse-sdk allows you to create new plugins for @reliverse/rse CLI, interact with reliverse.org, and even extend your own CLI functionality (you may also try @reliverse/dler-sdk for this case).
7 lines (6 loc) • 299 B
TypeScript
/**
* Creates a package.json file for a new project using pkg-types
* @param projectPath Path where the package.json should be created
* @param projectName Name of the project
*/
export declare function createPackageJSON(projectPath: string, projectName: string, isLib: boolean): Promise<void>;