···11{
22 "name": "anthropic-api-key",
33- "version": "0.1.5",
33+ "version": "0.1.6",
44 "description": "CLI to fetch Anthropic API access tokens via OAuth with PKCE using Bun.",
55 "type": "module",
66 "private": false,
+1-5
src/index.ts
···11#!/usr/bin/env bun
2233// Detect if running under Node.js instead of Bun
44-if (
55- typeof Bun === "undefined" ||
66- // @ts-ignore
77- (typeof process !== "undefined" && process.release?.name === "node")
88-) {
44+if (typeof Bun === "undefined") {
95 console.error(
106 "❌ This CLI requires Bun. Please install Bun from https://bun.sh/",
117 );