-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.87 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.87 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "codex-multi-auth",
"version": "0.1.9",
"description": "Multi-account OAuth manager and codex auth wrapper for the official @openai/codex CLI, with switching, health checks, and recovery tools",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "MIT",
"author": "ndycode",
"repository": {
"type": "git",
"url": "git+https://github.com/ndycode/codex-multi-auth.git"
},
"keywords": [
"openai",
"codex",
"codex-cli",
"chatgpt",
"oauth2",
"pkce",
"multi-account",
"account-switching",
"oauth-manager",
"fault-tolerance",
"terminal-ui",
"cli-tool",
"typescript",
"nodejs",
"developer-tools",
"authentication",
"account-health",
"recovery-tools",
"project-scoped-storage"
],
"homepage": "https://github.com/ndycode/codex-multi-auth#readme",
"bugs": {
"url": "https://github.com/ndycode/codex-multi-auth/issues"
},
"scripts": {
"build": "tsc && node scripts/copy-oauth-success.js",
"typecheck": "tsc --noEmit",
"lint": "npm run lint:ts && npm run lint:scripts",
"lint:ts": "eslint . --ext .ts",
"lint:scripts": "eslint scripts --ext .js",
"lint:fix": "npm run lint:ts:fix && npm run lint:scripts:fix",
"lint:ts:fix": "eslint . --ext .ts --fix",
"lint:scripts:fix": "eslint scripts --ext .js --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:model-matrix": "node scripts/test-model-matrix.js",
"test:model-matrix:smoke": "node scripts/test-model-matrix.js --smoke",
"test:model-matrix:report": "node scripts/test-model-matrix.js --smoke --report-json=.tmp/model-matrix-report.json",
"clean:repo": "node scripts/repo-hygiene.js clean --mode aggressive",
"clean:repo:check": "node scripts/repo-hygiene.js check",
"bench:edit-formats": "node scripts/benchmark-edit-formats.mjs --preset=codex-core",
"bench:edit-formats:smoke": "node scripts/benchmark-edit-formats.mjs --smoke --preset=codex-core",
"bench:edit-formats:render": "node scripts/benchmark-render-dashboard.mjs",
"bench:runtime-path": "npm run build && node scripts/benchmark-runtime-path.mjs",
"bench:runtime-path:quick": "node scripts/benchmark-runtime-path.mjs",
"test:coverage": "vitest run --coverage",
"coverage": "npm run build && vitest run --coverage",
"audit:prod": "npm audit --omit=dev --audit-level=high",
"audit:all": "npm audit --audit-level=high",
"audit:dev:allowlist": "node scripts/audit-dev-allowlist.js",
"audit:ci": "npm run audit:prod && npm run audit:dev:allowlist",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"bin": {
"codex": "scripts/codex.js",
"codex-multi-auth": "scripts/codex-multi-auth.js"
},
"files": [
"dist/",
"assets/",
"config/",
"scripts/",
"vendor/codex-ai-plugin/",
"vendor/codex-ai-sdk/",
"README.md",
"LICENSE"
],
"bundleDependencies": [
"@codex-ai/plugin"
],
"lint-staged": {
"*.ts": [
"eslint --max-warnings=0 --fix --no-warn-ignored"
],
"scripts/**/*.js": [
"eslint --max-warnings=0 --fix --no-warn-ignored"
]
},
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"devDependencies": {
"@fast-check/vitest": "^0.2.4",
"@codex-ai/sdk": "file:vendor/codex-ai-sdk",
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^10.0.0",
"fast-check": "^4.5.3",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.3",
"typescript-language-server": "^5.1.3",
"vitest": "^4.0.18"
},
"dependencies": {
"@openauthjs/openauth": "^0.4.3",
"@codex-ai/plugin": "file:vendor/codex-ai-plugin",
"hono": "4.12.6",
"zod": "^4.3.6"
},
"overrides": {
"hono": "4.12.6",
"minimatch": "10.2.4",
"rollup": "4.59.0",
"vite": "^7.3.1",
"@typescript-eslint/typescript-estree": {
"minimatch": "9.0.9"
}
}
}