1import { JoseKey } from "@atproto/oauth-client-node"; 2 3const main = async () => { 4 const kid = Date.now().toString(); 5 const key = await JoseKey.generate(["ES256"], kid); 6 7 console.log(JSON.stringify(key.privateJwk)); 8}; 9 10main();