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