mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-27 23:06:54 +05:00
26 lines
547 B
TypeScript
26 lines
547 B
TypeScript
/**
|
|
* @puaros/ipuaro - Local AI agent for codebase operations
|
|
*
|
|
* Main entry point for the library.
|
|
*/
|
|
|
|
import { createRequire } from "node:module"
|
|
|
|
const require = createRequire(import.meta.url)
|
|
const pkg = require("../package.json") as { version: string }
|
|
|
|
// Domain exports
|
|
export * from "./domain/index.js"
|
|
|
|
// Application exports
|
|
export * from "./application/index.js"
|
|
|
|
// Shared exports
|
|
export * from "./shared/index.js"
|
|
|
|
// Infrastructure exports
|
|
export * from "./infrastructure/index.js"
|
|
|
|
// Version
|
|
export const VERSION = pkg.version
|