@raiken/cli
Version:
CLI tool for Raiken - AI-powered Playwright test generator
17 lines • 688 B
TypeScript
export interface ProjectInfo {
name: string;
type: 'nextjs' | 'react' | 'vue' | 'svelte' | 'angular' | 'nuxt' | 'vite' | 'generic';
packageManager: 'npm' | 'yarn' | 'pnpm' | 'bun';
testDir: string;
hasPlaywright: boolean;
hasJest: boolean;
hasVitest: boolean;
scripts: Record<string, string>;
dependencies: Record<string, string>;
devDependencies: Record<string, string>;
rootDir: string;
configFiles: string[];
}
export declare function detectProject(projectPath: string): Promise<ProjectInfo>;
export declare function ensureTestDirectory(projectPath: string, testDir: string): Promise<void>;
//# sourceMappingURL=project-detector.d.ts.map