a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
105
fork

Configure Feed

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

at major 33 lines 734 B view raw
1{ 2 "type": "module", 3 "name": "@atcute/bluesky-richtext-builder", 4 "version": "2.0.3", 5 "description": "builder pattern for Bluesky's rich text facets", 6 "license": "0BSD", 7 "repository": { 8 "url": "https://github.com/mary-ext/atcute", 9 "directory": "packages/bluesky/richtext-builder" 10 }, 11 "files": [ 12 "dist/", 13 "lib/", 14 "!lib/**/*.bench.ts", 15 "!lib/**/*.test.ts" 16 ], 17 "exports": { 18 ".": "./dist/index.js" 19 }, 20 "sideEffects": false, 21 "scripts": { 22 "build": "tsc --project tsconfig.build.json", 23 "test": "bun test --coverage", 24 "prepublish": "rm -rf dist; pnpm run build" 25 }, 26 "dependencies": { 27 "@atcute/bluesky": "workspace:^", 28 "@atcute/lexicons": "workspace:^" 29 }, 30 "devDependencies": { 31 "@types/bun": "^1.2.18" 32 } 33}