this repo has no description
0
fork

Configure Feed

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

chore: fix the bun check

+2 -6
+1 -1
package.json
··· 1 1 { 2 2 "name": "anthropic-api-key", 3 - "version": "0.1.5", 3 + "version": "0.1.6", 4 4 "description": "CLI to fetch Anthropic API access tokens via OAuth with PKCE using Bun.", 5 5 "type": "module", 6 6 "private": false,
+1 -5
src/index.ts
··· 1 1 #!/usr/bin/env bun 2 2 3 3 // Detect if running under Node.js instead of Bun 4 - if ( 5 - typeof Bun === "undefined" || 6 - // @ts-ignore 7 - (typeof process !== "undefined" && process.release?.name === "node") 8 - ) { 4 + if (typeof Bun === "undefined") { 9 5 console.error( 10 6 "❌ This CLI requires Bun. Please install Bun from https://bun.sh/", 11 7 );