A Deno-compatible AT Protocol OAuth client that serves as a drop-in replacement for @atproto/oauth-client-node
0
fork

Configure Feed

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

Fix DPoP key import usage mismatch

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

+2 -2
+1 -1
deno.json
··· 1 1 { 2 2 "name": "@tijs/oauth-client-deno", 3 - "version": "1.0.1", 3 + "version": "1.0.2", 4 4 "description": "AT Protocol OAuth client for Deno - handle-focused alternative to @atproto/oauth-client-node with Web Crypto API compatibility", 5 5 "license": "MIT", 6 6 "repository": {
+1 -1
src/dpop.ts
··· 107 107 namedCurve: "P-256", 108 108 }, 109 109 false, // not extractable 110 - ["sign"], 110 + ["sign", "verify"], 111 111 ); 112 112 } catch (error) { 113 113 throw new DPoPError("Failed to import private key from JWK", error as Error);