this repo has no description
0
fork

Configure Feed

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

upgrades, eras

alice 4f52b264 9d2f1e08

+18 -4
bun.lockb

This is a binary file and will not be displayed.

+4 -4
package.json
··· 10 10 "postinstall": "patch-package" 11 11 }, 12 12 "dependencies": { 13 - "@babel/preset-typescript": "^7.25.7", 14 - "@types/node": "^22.7.7", 13 + "@babel/preset-typescript": "^7.26.0", 14 + "@types/node": "^22.9.0", 15 15 "@types/react": "npm:types-react@19.0.0-rc.1", 16 16 "@types/react-dom": "npm:types-react-dom@19.0.0-rc.1", 17 - "@vercel/functions": "^1.4.2", 17 + "@vercel/functions": "^1.5.0", 18 18 "autoprefixer": "^10.4.20", 19 19 "bookmarkleter": "^1.1.0", 20 - "eslint": "^9.13.0", 20 + "eslint": "^9.14.0", 21 21 "eslint-config-next": "15.0.2", 22 22 "next": "15.0.2", 23 23 "patch-package": "^8.0.0",
+6
src/app/eras/.well-known/atproto-did/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response('did:plc:dm6tjhimvcxsgh2yxbppbqkx', { 3 + status: 200, 4 + headers: { 'content-type': 'text/plain' }, 5 + }); 6 + }
+8
src/app/eras/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:dm6tjhimvcxsgh2yxbppbqkx', 6 + }, 7 + }); 8 + }