Bluesky app fork with some witchin' additions 馃挮 witchsky.app
bluesky fork client
141
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": "bskylink", 3 "version": "0.0.0", 4 "type": "module", 5 "main": "index.ts", 6 "scripts": { 7 "test": "npm run test:unit && npm run test:e2e", 8 "test:e2e": "./tests/infra/with-test-db.sh node --loader ts-node/esm --test ./tests/index.ts", 9 "test:unit": "node --loader ts-node/esm --test ./src/*.test.ts", 10 "build": "tsc" 11 }, 12 "dependencies": { 13 "@atproto/api": "^0.16.7", 14 "@atproto/common": "^0.4.11", 15 "@types/escape-html": "^1.0.4", 16 "body-parser": "^1.20.2", 17 "cors": "^2.8.5", 18 "escape-html": "^1.0.3", 19 "express": "^4.19.2", 20 "http-terminator": "^3.2.0", 21 "i18n": "^0.15.1", 22 "kysely": "^0.27.3", 23 "lru-cache": "^11.1.0", 24 "pg": "^8.12.0", 25 "pino": "^9.2.0", 26 "uint8arrays": "^5.1.0" 27 }, 28 "devDependencies": { 29 "@types/body-parser": "^1.19.5", 30 "@types/cors": "^2.8.17", 31 "@types/express": "^4.17.21", 32 "@types/i18n": "^0.13.12", 33 "@types/pg": "^8.11.6", 34 "ts-node": "^10.9.2", 35 "typescript": "^5.4.5" 36 } 37}