this repo has no description
0
fork

Configure Feed

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

at main 35 lines 901 B view raw
1{ 2 "name": "name-goes-here", 3 "version": "1.0.0", 4 "description": "description-goes-here", 5 "main": "src/index.ts", 6 "type": "module", 7 "scripts": { 8 "start": "bunx tsx src/index.ts", 9 "dev": "bunx --watch src/index.ts", 10 "format": "bunx prettier --write .", 11 "lint": "bunx eslint .", 12 "lint:fix": "bunx eslint --fix ." 13 }, 14 "dependencies": { 15 "@atproto/api": "^0.13.12", 16 "@atproto/repo": "^0.5.3", 17 "@types/express": "^5.0.0", 18 "dotenv": "^16.4.5", 19 "express": "^4.21.1", 20 "prom-client": "^15.1.3" 21 }, 22 "devDependencies": { 23 "@eslint/js": "^9.12.0", 24 "@trivago/prettier-plugin-sort-imports": "^4.3.0", 25 "@types/eslint__js": "^8.42.3", 26 "@types/node": "^22.7.5", 27 "eslint": "^9.12.0", 28 "prettier": "^3.3.3", 29 "tsx": "^4.19.1", 30 "typescript": "^5.6.3", 31 "typescript-eslint": "^8.9.0" 32 }, 33 "author": "alice", 34 "license": "MIT" 35}