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 37 lines 883 B view raw
1{ 2 "type": "module", 3 "name": "@atcute/client", 4 "version": "4.0.3", 5 "description": "lightweight and cute API client for AT Protocol", 6 "license": "0BSD", 7 "repository": { 8 "url": "https://github.com/mary-ext/atcute", 9 "directory": "packages/clients/client" 10 }, 11 "files": [ 12 "dist/", 13 "lib/", 14 "!lib/**/*.bench.ts", 15 "!lib/**/*.test.ts" 16 ], 17 "exports": { 18 ".": "./dist/index.js" 19 }, 20 "scripts": { 21 "build": "tsc --project tsconfig.build.json", 22 "postbuild": "node ./scripts/ensure-files.js", 23 "test": "vitest run --coverage", 24 "prepublish": "rm -rf dist; pnpm run build" 25 }, 26 "dependencies": { 27 "@atcute/identity": "workspace:^", 28 "@atcute/lexicons": "workspace:^" 29 }, 30 "devDependencies": { 31 "@atcute/atproto": "workspace:^", 32 "@atcute/bluesky": "workspace:^", 33 "@atcute/internal-dev-env": "workspace:^", 34 "@vitest/coverage-v8": "^3.2.4", 35 "vitest": "^3.2.4" 36 } 37}