the point of this package is NOT to provide some sort of "clean" API for apple music searching.
the point of this package is to provide a wrapper for apple music's API protection.
usage is relatively simple:
import AppleMusic from 'apple-music';
const apple = new AppleMusic();
const search = await apple.search('Blinding Lights');
const rawSong = search.results.top.data[0];
const songInfo = search.resources.songs[rawSong.id].attributes;
console.log(songInfo);