-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3 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
{
"name": "oc-codex-multi-auth",
"version": "6.0.0",
"description": "OpenCode plugin for Codex-first GPT-5 workflows with ChatGPT Plus/Pro OAuth, multi-account rotation, and guided setup",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "MIT",
"author": "ndycode",
"repository": {
"type": "git",
"url": "git+https://github.com/ndycode/oc-codex-multi-auth.git"
},
"keywords": [
"typescript",
"nodejs",
"opencode",
"opencode-plugin",
"openai",
"chatgpt",
"chatgpt-plus",
"chatgpt-pro",
"oauth",
"oauth2",
"pkce",
"gpt-5",
"codex",
"multi-account",
"developer-tools",
"terminal"
],
"homepage": "https://github.com/ndycode/oc-codex-multi-auth#readme",
"bugs": {
"url": "https://github.com/ndycode/oc-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:coverage": "vitest run --coverage",
"coverage": "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": {
"oc-codex-multi-auth": "scripts/install-oc-codex-multi-auth.js"
},
"files": [
"dist/",
"assets/",
"config/",
"scripts/",
"README.md",
"LICENSE"
],
"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",
"@opencode-ai/sdk": "^1.2.10",
"@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",
"@opencode-ai/plugin": "^1.2.9",
"hono": "4.12.8",
"zod": "^4.3.6"
},
"overrides": {
"flatted": "3.4.2",
"hono": "4.12.8",
"rollup": "4.60.0",
"vite": "^7.3.1",
"@typescript-eslint/typescript-estree": {
"minimatch": "^9.0.5"
}
}
}