-
Notifications
You must be signed in to change notification settings - Fork 713
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.89 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
{
"name": "codex-chatgpt-web",
"version": "5.0.8",
"private": true,
"description": "A focused local Responses bridge that runs Codex tasks through a user-authenticated ChatGPT web session.",
"repository": {
"type": "git",
"url": "git+https://github.com/miuuyy/codex-chatgpt-web.git"
},
"homepage": "https://github.com/miuuyy/codex-chatgpt-web#readme",
"bugs": {
"url": "https://github.com/miuuyy/codex-chatgpt-web/issues"
},
"packageManager": "bun@1.4.0",
"type": "module",
"bin": {
"codex-chatgpt-web": "./src/cli.ts"
},
"files": [
"dist",
"README.md",
"LICENSE",
"LICENSES"
],
"scripts": {
"start": "bun run src/cli.ts serve",
"setup": "bun run src/cli.ts setup",
"doctor": "bun run src/cli.ts doctor",
"dev:launcher": "bun run src/cli.ts dev launcher",
"dev:chat": "bun run src/cli.ts dev chat",
"test": "bun test ./tests",
"audit": "bun audit",
"check-version": "bun run scripts/check-version.ts",
"typecheck": "bun x --no-install --bun tsc --noEmit",
"licenses": "bun run scripts/generate-third-party-notices.ts --include-launcher",
"clean": "bun run scripts/clean.ts",
"build": "bun run scripts/build-runtime-bundle.ts",
"smoke": "bun run scripts/smoke-release.ts dist/runtime",
"smoke:codex": "bun run scripts/smoke-codex-catalog.ts",
"smoke:cancel": "bun run scripts/smoke-codex-cancel.ts",
"smoke:interrupt": "bun run scripts/smoke-codex-interrupt.ts",
"smoke:subagents": "bun run scripts/smoke-codex-subagents.ts --v1 && bun run scripts/smoke-codex-subagents.ts --v2",
"smoke:subagents:live": "bun run scripts/smoke-codex-web-subagents.ts",
"launcher": "bun run scripts/start-launcher.ts",
"app": "bun run scripts/start-launcher.ts",
"app:package": "bun run --cwd launcher package",
"app:smoke": "bun run --cwd launcher smoke:package",
"launcher:dev": "bun run --cwd launcher dev",
"launcher:audit": "bun run --cwd launcher audit",
"launcher:typecheck": "bun run --cwd launcher typecheck",
"launcher:build": "bun run --cwd launcher build",
"launcher:test": "bun run --cwd launcher test",
"verify": "bun run scripts/verify.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"chromium-bidi": "12.1.0",
"fflate": "^0.8.2",
"playwright-core": "^1.62.0",
"tiktoken": "1.0.22",
"turndown": "7.2.0",
"turndown-plugin-gfm": "1.0.2",
"zod": "4.4.3"
},
"devDependencies": {
"@types/bun": "1.4.0",
"@types/turndown": "5.0.5",
"typescript": "5.9.3"
},
"engines": {
"bun": "1.4.0"
},
"overrides": {
"@hono/node-server": "2.0.12",
"fast-uri": "3.1.6",
"hono": "4.13.5",
"qs": "6.16.0",
"zod-to-json-schema": "3.25.1"
},
"keywords": [
"codex",
"chatgpt",
"responses-api",
"mcp",
"playwright"
],
"license": "MIT"
}