A simple tool which lets you scrape twitter accounts and crosspost them to bluesky accounts! Comes with a CLI and a webapp for managing profiles! Works with images/videos/link embeds/threads.
at main 19 lines 490 B view raw
1{ 2 "$schema": "https://json.schemastore.org/tsconfig", 3 "compilerOptions": { 4 "target": "ES2022", 5 "lib": ["ES2022", "DOM", "DOM.Iterable"], 6 "module": "ESNext", 7 "moduleResolution": "Bundler", 8 "jsx": "react-jsx", 9 "allowJs": false, 10 "strict": true, 11 "noUnusedLocals": true, 12 "noUnusedParameters": true, 13 "esModuleInterop": true, 14 "allowSyntheticDefaultImports": true, 15 "skipLibCheck": true, 16 "types": ["vite/client"] 17 }, 18 "include": ["./src"] 19}