get your claude code tokens here
1{ 2 "name": "anthropic-api-key", 3 "version": "0.1.0", 4 "description": "CLI to fetch Anthropic API access tokens via OAuth with PKCE using Bun.", 5 "type": "module", 6 "private": false, 7 "license": "MIT", 8 "author": "taciturnaxolotl", 9 "repository": { 10 "type": "git", 11 "url": "git+https://github.com/taciturnaxolotl/anthropic-api-key.git" 12 }, 13 "bugs": { 14 "url": "https://github.com/taciturnaxolotl/anthropic-api-key/issues" 15 }, 16 "homepage": "https://github.com/taciturnaxolotl/anthropic-api-key#readme", 17 "bin": { 18 "anthropic": "dist/anthropic.js" 19 }, 20 "exports": { 21 ".": "./dist/anthropic.js" 22 }, 23 "files": [ 24 "dist", 25 "public" 26 ], 27 "scripts": { 28 "build": "bun build bin/anthropic.ts --outdir=dist --target=bun --sourcemap=external", 29 "prepare": "bun run build" 30 }, 31 "devDependencies": { 32 "@types/bun": "latest", 33 "typescript": "^5" 34 } 35}