get your claude code tokens here
1{
2 "name": "anthropic-api-key",
3 "version": "0.2.2",
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-api-key": "dist/index.js"
19 },
20 "exports": {
21 ".": "./dist/index.js",
22 "./lib/token": "./dist/lib/token.js"
23 },
24 "files": [
25 "dist",
26 "public"
27 ],
28 "scripts": {
29 "build": "bun build src/index.ts src/lib/token.ts --outdir=dist --target=node --sourcemap=external",
30 "prepare": "bun run build"
31 },
32 "devDependencies": {
33 "@types/bun": "latest",
34 "typescript": "^5"
35 },
36 "dependencies": {
37 "@types/express": "^5.0.3",
38 "express": "^5.1.0",
39 "node-fetch": "^3.3.2",
40 "open": "^10.2.0"
41 }
42}