this repo has no description
0
fork

Configure Feed

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

at main 37 lines 1.0 kB view raw
1{ 2 "name": "whos-alice", 3 "version": "1.0.0", 4 "description": "custom feed for alices", 5 "main": "index.js", 6 "repository": "git@github.com:bluesky-social/feed-generator.git", 7 "author": "alice <aliceisjustplaying@gmail.com>", 8 "license": "MIT", 9 "scripts": { 10 "publishFeed": "ts-node scripts/publishFeedGen.ts", 11 "start": "ts-node src/index.ts", 12 "start-prod": "node dist/index.js", 13 "build": "tsc" 14 }, 15 "dependencies": { 16 "@atproto/api": "^0.6.21", 17 "@atproto/did-resolver": "^0.1.0", 18 "@atproto/lexicon": "^0.2.3", 19 "@atproto/repo": "^0.3.3", 20 "@atproto/xrpc-server": "^0.3.3", 21 "dotenv": "^16.3.1", 22 "express": "^4.18.2", 23 "kysely": "^0.22.0", 24 "multiformats": "^9.9.0", 25 "pg": "^8.11.3" 26 }, 27 "devDependencies": { 28 "@types/express": "^4.17.20", 29 "@types/node": "^20.8.9", 30 "@types/pg": "^8.10.7", 31 "@typescript-eslint/eslint-plugin": "^6.9.1", 32 "@typescript-eslint/parser": "^6.9.1", 33 "eslint": "^8.52.0", 34 "ts-node": "^10.9.1", 35 "typescript": "^5.2.2" 36 } 37}