A CLI for scaffolding ATProto web applications
2
fork

Configure Feed

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

at main 24 lines 529 B view raw
1{ 2 "name": "vite-react-typescript-atproto", 3 "version": "0.0.0", 4 "private": true, 5 "type": "module", 6 "scripts": { 7 "dev": "vite", 8 "build": "tsc -b && vite build", 9 "preview": "vite preview" 10 }, 11 "dependencies": { 12 "react": "^19.2.4", 13 "react-dom": "^19.2.4" 14 }, 15 "devDependencies": { 16 "@types/node": "^24.10.12", 17 "@types/react": "^19.2.13", 18 "@types/react-dom": "^19.2.3", 19 "globals": "^17.3.0", 20 "typescript": "~5.9.3", 21 "vite": "^7.3.1", 22 "@vitejs/plugin-react": "^5.1.3" 23 } 24}