this repo has no description
0
fork

Configure Feed

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

updates, sortinghat

alice 85fa5cb3 2130a689

+28 -14
bun.lockb

This is a binary file and will not be displayed.

+13 -13
package.json
··· 10 10 "postinstall": "patch-package" 11 11 }, 12 12 "dependencies": { 13 - "@babel/preset-typescript": "^7.23.3", 14 - "@types/node": "^20.9.1", 15 - "@types/react": "^18.2.37", 16 - "@types/react-dom": "^18.2.15", 17 - "autoprefixer": "^10.4.16", 13 + "@babel/preset-typescript": "^7.24.7", 14 + "@types/node": "^22.5.4", 15 + "@types/react": "^18.3.5", 16 + "@types/react-dom": "^18.3.0", 17 + "autoprefixer": "^10.4.20", 18 18 "bookmarkleter": "^1.1.0", 19 - "eslint": "^8.54.0", 20 - "eslint-config-next": "^14.0.3", 19 + "eslint": "^9.9.1", 20 + "eslint-config-next": "^14.2.8", 21 21 "next": "14.0.4-canary.4", 22 22 "patch-package": "^8.0.0", 23 - "postcss": "^8.4.31", 24 - "prism-react-renderer": "^2.2.0", 25 - "react": "^18.2.0", 26 - "react-dom": "^18.2.0", 27 - "tailwindcss": "^3.3.5", 28 - "typescript": "^5.2.2" 23 + "postcss": "^8.4.45", 24 + "prism-react-renderer": "^2.4.0", 25 + "react": "^18.3.1", 26 + "react-dom": "^18.3.1", 27 + "tailwindcss": "^3.4.10", 28 + "typescript": "^5.5.4" 29 29 } 30 30 }
+6
src/app/sortinghat/.well-known/atproto-did/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response('did:plc:yv4nuaj3jshcuh2d2ivykgiz', { 3 + status: 200, 4 + headers: { 'content-type': 'text/plain' }, 5 + }); 6 + }
+8
src/app/sortinghat/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response(null, { 3 + status: 302, 4 + headers: { 5 + 'Location': 'https://bsky.app/profile/did:plc:yv4nuaj3jshcuh2d2ivykgiz', 6 + }, 7 + }); 8 + }
+1 -1
tsconfig.json
··· 31 31 "src/app/alice/route.tsbak", 32 32 "src/app/alice/layout.tsxbak", 33 33 "src/app/layout.tsxbak" 34 - ], 34 + , "src/app/sortinghat/page.tsx.bak" ], 35 35 "exclude": ["node_modules"] 36 36 }