@reliverse/rse
Version:
@reliverse/rse is your all-in-one companion for bootstrapping and improving any kind of projects (especially web apps built with frameworks like Next.js) — whether you're kicking off something new or upgrading an existing app. It is also a little AI-power
8 lines (7 loc) • 373 B
TypeScript
/**
* Checks if a specific script exists in package.json
* @param projectPath - Path to the project directory containing package.json
* @param scriptName - Name of the script to check for
* @returns Promise resolving to true if the script exists, false otherwise
*/
export declare function checkScriptExists(projectPath: string, scriptName: string): Promise<boolean>;