a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
at trunk 38 lines 759 B view raw
1{ 2 "name": "@atcute/cache", 3 "version": "0.1.0", 4 "description": "normalized cache store for AT Protocol clients", 5 "license": "0BSD", 6 "repository": { 7 "url": "https://github.com/mary-ext/atcute", 8 "directory": "packages/clients/cache" 9 }, 10 "files": [ 11 "dist/", 12 "lib/", 13 "!lib/**/*.bench.ts", 14 "!lib/**/*.test.ts" 15 ], 16 "type": "module", 17 "exports": { 18 ".": "./lib/index.ts" 19 }, 20 "publishConfig": { 21 "access": "public", 22 "exports": { 23 ".": "./dist/index.js" 24 } 25 }, 26 "scripts": { 27 "build": "tsgo --project tsconfig.build.json", 28 "test": "vitest run", 29 "prepublish": "rm -rf dist; pnpm run build" 30 }, 31 "dependencies": { 32 "@atcute/lexicons": "workspace:^" 33 }, 34 "devDependencies": { 35 "@atcute/bluesky": "workspace:^", 36 "vitest": "^4.0.18" 37 } 38}