Malachite is a tool to import your Last.fm and Spotify listening history to the AT Protocol network using the fm.teal.alpha.feed.play lexicon.
malachite scrobbles importer atproto music
15
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 27 lines 698 B view raw
1{ 2 "compilerOptions": { 3 "target": "ES2022", 4 "module": "node16", 5 "moduleResolution": "node16", 6 "lib": ["ES2022"], 7 "outDir": "./dist", 8 "rootDir": "./src", 9 "strict": true, 10 "esModuleInterop": true, 11 "skipLibCheck": true, 12 "forceConsistentCasingInFileNames": true, 13 "resolveJsonModule": true, 14 "declaration": true, 15 "declarationMap": true, 16 "sourceMap": true, 17 "noImplicitAny": true, 18 "strictNullChecks": true, 19 "strictFunctionTypes": true, 20 "noUnusedLocals": true, 21 "noUnusedParameters": true, 22 "noImplicitReturns": true, 23 "noFallthroughCasesInSwitch": true 24 }, 25 "include": ["src/**/*"], 26 "exclude": ["node_modules", "dist"] 27}