In SQL*PLus Release 8 you can use DESC:
DESC your_package

Or you can use ALL_SOURCE view:
SELECT text
FROM all_source
WHERE type = 'PACKAGE'
AND name = 'YOUR_PACKAGE'
ORDER BY line;