-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.4 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.4 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-codex",
"version": "0.3.1",
"description": "Multi-account ChatGPT Codex auth plugin for OpenCode",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JasonZhaoWW/opencode-codex.git"
},
"homepage": "https://github.com/JasonZhaoWW/opencode-codex#readme",
"bugs": {
"url": "https://github.com/JasonZhaoWW/opencode-codex/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"opencode",
"opencode-plugin",
"codex",
"openai",
"auth"
],
"scripts": {
"test": "bun test",
"typecheck": "tsc --noEmit && tsc -p tsconfig.test.json --noEmit",
"build": "tsc -p tsconfig.build.json",
"prepack": "bun run typecheck && bun test && bun run build"
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.13",
"proper-lockfile": "^4.1.2",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@tsconfig/bun": "^1.0.9",
"@types/node": "^22.13.9",
"@types/proper-lockfile": "^4.1.4",
"typescript": "^5.8.2"
}
}