A tool to scrobble tracks from your Apple Music data export to Teal.fm.
at main 518 B view raw
1{ 2 "name": "tealfm-apple-music-import", 3 "module": "index.ts", 4 "devDependencies": { 5 "@types/bun": "latest", 6 "@types/papaparse": "^5.3.16" 7 }, 8 "peerDependencies": { 9 "typescript": "^5" 10 }, 11 "scripts": { 12 "start": "bun run src/index.ts", 13 "dev": "bun run --watch src/index.ts" 14 }, 15 "type": "module", 16 "dependencies": { 17 "@atproto/api": "^0.17.4", 18 "consola": "^3.4.2", 19 "musicbrainz-api": "^0.25.1", 20 "papaparse": "^5.5.3", 21 "unstorage": "^1.17.2", 22 "zod": "^4.1.12" 23 } 24}