You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "OpenAI Codex (Login with ChatGPT) as an Interchange inference provider, with OAuth token exchange, a Responses-protocol adapter, and a content-type repair for the ChatGPT backend.",
"license": "LGPL-2.1-or-later",
"author": "Sawyer Cutler <sawyer@dirtroad.dev>",
"type": "module",
"sideEffects": false,
"files": [
"src",
"!src/**/*.test.ts",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": "./src/index.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "bun test",
"check": "bun run typecheck && bun run lint && bun run format:check && bun run test"