/** * 프로젝트 루트인지 확인 (package.json 또는 .git 존재) */ export declare function isProjectRoot(dir: string): Promise; /** * _bmad 폴더가 설치되어 있는지 확인 */ export declare function isBmadInstalled(dir: string): Promise; /** * Git 저장소인지 확인 */ export declare function isGitRepository(dir: string): Promise; /** * 현재 설치된 버전 읽기 */ export declare function getCurrentVersion(dir: string): Promise; /** * 임시 디렉토리 생성 */ export declare function createTempDir(prefix?: string): Promise; /** * 백업 디렉토리 생성 */ export declare function createBackupDir(dir: string, name: string): Promise; /** * 디렉토리 복사 (덮어쓰기 옵션) */ export declare function copyDirectory(src: string, dest: string, options?: { overwrite?: boolean; }): Promise; /** * 파일 존재 여부 확인 */ export declare function fileExists(filePath: string): Promise; /** * JSON 파일 읽기 */ export declare function readJson(filePath: string): Promise; /** * JSON 파일 쓰기 */ export declare function writeJson(filePath: string, data: unknown): Promise; /** * 텍스트 파일 읽기 */ export declare function readText(filePath: string): Promise; /** * 텍스트 파일 쓰기 */ export declare function writeText(filePath: string, content: string): Promise; //# sourceMappingURL=fs-utils.d.ts.map