pi-codex-token 1.0.1 → 1.0.2

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 +1 -1
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -43,7 +43,7 @@ environment where pi runs (a worker image, CI runner, server) and configure it v
43
43
 
44
44
  1. **Distribute** — publish to npm, or pin a git tag/SHA for an internal build:
45
45
  ```bash
46
- pi install pi-codex-token # from npm
46
+ pi install npm:pi-codex-token # from npm
47
47
  # or, pinned to an immutable ref:
48
48
  pi install <git-url>#<tag-or-sha>
49
49
  ```
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "pi-codex-token",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "pi provider plugin: use gpt-5.5 on the OpenAI Codex backend via a personal access token (PAT), non-interactively.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "keywords": [
8
8
  "pi",
9
+ "pi-package",
9
10
  "pi-extension",
10
11
  "codex",
11
12
  "openai",
@@ -44,7 +45,7 @@
44
45
  "vitest": "^4.1.8"
45
46
  },
46
47
  "peerDependencies": {
47
- "@earendil-works/pi-ai": ">=0.79.0 <0.80.0",
48
- "@earendil-works/pi-coding-agent": ">=0.79.0 <0.80.0"
48
+ "@earendil-works/pi-ai": "*",
49
+ "@earendil-works/pi-coding-agent": "*"
49
50
  }
50
51
  }