Files
puaros/packages/guardian/src/index.ts
2025-11-30 01:50:21 +05:00

20 lines
439 B
TypeScript

import pkg from "../package.json"
export const VERSION = pkg.version
export * from "./domain"
export * from "./application"
export * from "./infrastructure"
export * from "./shared"
export { analyzeProject } from "./api"
export type {
AnalyzeProjectRequest,
AnalyzeProjectResponse,
ArchitectureViolation,
HardcodeViolation,
CircularDependencyViolation,
FrameworkLeakViolation,
ProjectMetrics,
} from "./api"