ai-sdk-provider-codex-cli 1.0.5 → 1.1.0
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 +145 -38
- package/dist/index.cjs +4775 -439
- package/dist/index.d.cts +663 -196
- package/dist/index.d.ts +663 -196
- package/dist/index.js +4762 -442
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-sdk-provider-codex-cli",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "AI SDK v6 provider for OpenAI Codex CLI (use ChatGPT Plus/Pro subscription)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai-sdk",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"language-model",
|
|
11
11
|
"gpt-5",
|
|
12
12
|
"gpt-5.1",
|
|
13
|
-
"gpt-5.
|
|
14
|
-
"gpt-5.
|
|
13
|
+
"gpt-5.3-codex",
|
|
14
|
+
"gpt-5.2-codex-max",
|
|
15
15
|
"provider"
|
|
16
16
|
],
|
|
17
17
|
"homepage": "https://github.com/ben-vargas/ai-sdk-provider-codex-cli",
|
|
@@ -54,6 +54,9 @@
|
|
|
54
54
|
"lint": "eslint .",
|
|
55
55
|
"lint:fix": "eslint . --fix",
|
|
56
56
|
"validate": "npm run build && npm run typecheck && npm run format && npm run lint && npm run test",
|
|
57
|
+
"validate:docs": "node scripts/validate-doc-snippets.mjs",
|
|
58
|
+
"validate:examples:app-server": "node scripts/validate-app-server-examples.mjs",
|
|
59
|
+
"validate:full": "npm run validate && npm run validate:docs && npm run validate:examples:app-server",
|
|
57
60
|
"test": "vitest run",
|
|
58
61
|
"test:watch": "vitest",
|
|
59
62
|
"test:coverage": "vitest run --coverage"
|
|
@@ -64,7 +67,7 @@
|
|
|
64
67
|
"jsonc-parser": "^3.3.1"
|
|
65
68
|
},
|
|
66
69
|
"optionalDependencies": {
|
|
67
|
-
"@openai/codex": "^0.
|
|
70
|
+
"@openai/codex": "^0.105.0"
|
|
68
71
|
},
|
|
69
72
|
"devDependencies": {
|
|
70
73
|
"@eslint/js": "^9.14.0",
|