@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.
- package/README.md +11 -0
- package/package.json +3 -4
package/README.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# pi-anthropic-auth
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@gotgenes/pi-anthropic-auth)
|
|
4
|
+
[](https://github.com/gotgenes/pi-anthropic-auth/actions/workflows/ci.yml)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
[](https://www.typescriptlang.org/)
|
|
7
|
+
[](https://pnpm.io/)
|
|
8
|
+
[](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.
|
|
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": "^
|
|
60
|
+
"typescript": "^6.0.3"
|
|
62
61
|
}
|
|
63
62
|
}
|