@gotgenes/pi-anthropic-auth 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +3 -4
package/README.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # pi-anthropic-auth
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@gotgenes/pi-anthropic-auth?style=flat&logo=npm&logoColor=white)](https://www.npmjs.com/package/@gotgenes/pi-anthropic-auth)
4
+ [![CI](https://img.shields.io/github/actions/workflow/status/gotgenes/pi-anthropic-auth/ci.yml?style=flat&logo=github&label=CI)](https://github.com/gotgenes/pi-anthropic-auth/actions/workflows/ci.yml)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT)
6
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.x-3178C6?style=flat&logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
7
+ [![pnpm](https://img.shields.io/badge/pnpm-%3E%3D9-F69220?style=flat&logo=pnpm&logoColor=white)](https://pnpm.io/)
8
+ [![Pi Package](https://img.shields.io/badge/Pi-Package-6366F1?style=flat)](https://pi.mariozechner.at/)
9
+
3
10
  Minimal Pi extension package for Anthropic Claude Pro/Max OAuth compatibility.
4
11
 
5
12
  ## Purpose
@@ -124,6 +131,10 @@ Project-local skills live in `.agents/skills/`:
124
131
  7. `AGENTS.md`
125
132
  8. `.agents/skills/`
126
133
 
134
+ ## Acknowledgments
135
+
136
+ This project was inspired by [opencode-anthropic-auth](https://github.com/ex-machina-co/opencode-anthropic-auth/), which solved the same Anthropic OAuth compatibility problem for [OpenCode](https://opencode.ai/).
137
+
127
138
  ## License
128
139
 
129
140
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotgenes/pi-anthropic-auth",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Pi extension package for Anthropic OAuth compatibility",
5
5
  "author": {
6
6
  "name": "Chris Lasher"
@@ -46,18 +46,17 @@
46
46
  "./dist/index.js"
47
47
  ]
48
48
  },
49
- "dependencies": {},
50
49
  "peerDependencies": {
51
50
  "@mariozechner/pi-ai": "*",
52
51
  "@mariozechner/pi-coding-agent": "*"
53
52
  },
54
53
  "devDependencies": {
54
+ "@anthropic-ai/sdk": "^0.52.0",
55
55
  "@biomejs/biome": "^2.4.12",
56
56
  "@mariozechner/pi-ai": "^0.68.0",
57
57
  "@mariozechner/pi-coding-agent": "^0.68.0",
58
- "@anthropic-ai/sdk": "^0.52.0",
59
58
  "markdownlint-cli2": "^0.22.0",
60
59
  "tsx": "^4.20.6",
61
- "typescript": "^5.9.3"
60
+ "typescript": "^6.0.3"
62
61
  }
63
62
  }