This repository was archived by the owner on Feb 23, 2026. It is now read-only.
forked from numman-ali/opencode-openai-codex-auth
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.48 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "opencode-openai-codex-multi-auth",
"version": "4.6.0",
"description": "OpenAI ChatGPT (Codex backend) OAuth auth plugin for opencode - use your ChatGPT Plus/Pro subscription instead of API credits",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "MIT",
"author": "Numman Ali",
"contributors": [
"iam-brain (https://github.com/iam-brain)"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/iam-brain/opencode-openai-codex-multi-auth.git"
},
"keywords": [
"opencode",
"openai",
"codex",
"chatgpt",
"oauth",
"multi",
"gpt-5",
"plugin",
"auth",
"chatgpt-plus",
"chatgpt-pro"
],
"homepage": "https://github.com/iam-brain/opencode-openai-codex-multi-auth#readme",
"bugs": {
"url": "https://github.com/iam-brain/opencode-openai-codex-multi-auth/issues"
},
"scripts": {
"build": "tsc && node scripts/build-oauth-success.js",
"prepack": "npm run build",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"release:patch": "npm test && npm version patch -m \"release: v%s\" && npm run build && git push origin main --follow-tags",
"release:minor": "npm test && npm version minor -m \"release: v%s\" && npm run build && git push origin main --follow-tags",
"release:major": "npm test && npm version major -m \"release: v%s\" && npm run build && git push origin main --follow-tags"
},
"bin": {
"opencode-openai-codex-multi-auth": "scripts/install-opencode-codex-auth.js",
"opencode-openai-codex-auth": "scripts/install-opencode-codex-auth.js"
},
"files": [
"dist/",
"assets/",
"config/",
"scripts/",
"README.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md"
],
"engines": {
"node": ">=20.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.0.150"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.0.150",
"@opencode-ai/sdk": "^1.0.150",
"@types/node": "^24.6.2",
"@types/proper-lockfile": "^4.1.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"dependencies": {
"@openauthjs/openauth": "^0.4.3",
"jsonc-parser": "^3.3.1",
"proper-lockfile": "^4.1.2"
},
"overrides": {
"hono": "^4.11.8",
"vite": "^7.1.12"
}
}