mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-28 07:16:53 +05:00
20 lines
439 B
TypeScript
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"
|