Initial commit: Brainy - Multi-Dimensional AI Database

Open source vector database with HNSW indexing, graph relationships,
and metadata facets. Features CLI with professional augmentation registry
integration for discovering extensions and capabilities.
This commit is contained in:
David Snelling 2025-08-18 17:35:06 -07:00
commit f8c45f2d8d
448 changed files with 103294 additions and 0 deletions

16
dist/universal/index.d.ts vendored Normal file
View file

@ -0,0 +1,16 @@
/**
* Universal adapters for cross-environment compatibility
* Provides consistent APIs across Browser, Node.js, and Serverless environments
*/
export * from './uuid.js';
export { default as uuid } from './uuid.js';
export * from './crypto.js';
export { default as crypto } from './crypto.js';
export * from './fs.js';
export { default as fs } from './fs.js';
export * from './path.js';
export { default as path } from './path.js';
export * from './events.js';
export { default as events } from './events.js';
export { v4 as uuidv4 } from './uuid.js';
export { EventEmitter } from './events.js';