- Moved register_note_functions to objects/note/rhai.rs
- Moved register_event_functions to objects/event/rhai.rs
- Updated engine.rs to import these functions from their modules
- Better code organization with functions co-located with their types
- Created OsirisPackage with all OSIRIS types and functions registered in the package
- Functions now registered directly in package module (Note, Event, get_context)
- Created ZdfzPackage extending OsirisPackage
- Engine factory pattern: creates Engine::new_raw() + registers package (very cheap)
- Removed TypeRegistry (unused code)
- Simplified runner to use factory functions instead of passing packages
- Package is created once, then factory efficiently creates engines on demand