@bobmatnyc/ai-code-review
Version:
A TypeScript-based tool for automated code reviews using AI models from Google Gemini, Anthropic Claude, and OpenRouter
10 lines (9 loc) • 298 B
TypeScript
/**
* @fileoverview Detection utilities index.
*
* This module exports all detection-related utilities including project type
* and framework detection.
*/
export * from './projectTypeDetector';
export * from './frameworkDetector';
export { detectPrimaryLanguage } from './frameworkDetector';