Framework-agnostic OAuth integration for AT Protocol (Bluesky) applications.
1
fork

Configure Feed

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

Fix npm dependency versions (v2.10.1)

+9 -2
+7
CHANGELOG.md
··· 2 2 3 3 All notable changes to this project will be documented in this file. 4 4 5 + ## [2.10.1] - 2026-03-27 6 + 7 + ### Fixed 8 + 9 + - **Fix npm dependency versions**: Corrected `@tijs/atproto-storage` dependency 10 + version in npm build so `npm install @tijs/atproto-oauth` resolves correctly. 11 + 5 12 ## [2.10.0] - 2026-02-18 6 13 7 14 ### Changed
+2 -2
deno.json
··· 1 1 { 2 2 "$schema": "https://jsr.io/schema/config-file.v1.json", 3 3 "name": "@tijs/atproto-oauth", 4 - "version": "2.10.0", 4 + "version": "2.10.1", 5 5 "license": "MIT", 6 6 "exports": "./mod.ts", 7 7 "publish": { ··· 42 42 "ci": "deno task quality && deno task test", 43 43 "build:npm": "deno run -A _build_npm.ts" 44 44 } 45 - } 45 + }