@illiadotdev/codex-usage-plugin 0.2.1 → 0.2.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.
- package/README.md +0 -6
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -56,9 +56,3 @@ It calls the same ChatGPT backend usage surfaces Codex uses:
|
|
|
56
56
|
Plugin supports file-backed OpenCode/Codex auth only. If your client stores tokens in the OS keyring, the plugin will report that `auth.json` is unavailable. Keyring support can be added later.
|
|
57
57
|
|
|
58
58
|
The plugin never prints access tokens, refresh tokens, or ID tokens.
|
|
59
|
-
|
|
60
|
-
## Publishing
|
|
61
|
-
|
|
62
|
-
Maintainers publish by pushing a tag like `v0.2.2`. The release workflow runs tests and publishes the package to npm automatically.
|
|
63
|
-
|
|
64
|
-
This uses npm trusted publishing, so no `NPM_TOKEN` secret is needed. The npm package must be configured to trust this GitHub repository for publishing.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@illiadotdev/codex-usage-plugin",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "OpenCode plugin for viewing Codex ChatGPT usage limits and credits.",
|
|
6
6
|
"private": false,
|
|
@@ -41,9 +41,11 @@
|
|
|
41
41
|
"pretest": "npm run build",
|
|
42
42
|
"test": "node --test test/plugin.test.mjs"
|
|
43
43
|
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@opencode-ai/plugin": "latest"
|
|
46
|
+
},
|
|
44
47
|
"devDependencies": {
|
|
45
48
|
"@types/node": "^24.0.0",
|
|
46
|
-
"@opencode-ai/plugin": "latest",
|
|
47
49
|
"oxlint": "^1.0.0",
|
|
48
50
|
"typescript": "^5.9.3"
|
|
49
51
|
}
|