Kind of a road map for you to follow:

desc user_objects

select object_name from user_objects (or all_objects or dba_objects)
where object_type = 'PACKAGE';

Using that name, do
select text from user_source where name = 'NAME YOU JUST FOUND';

You may have to do "set long 2000" (or whatever) to get all of the text to display.