@openai/codex 0.16.0 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +155 -141
- package/bin/codex-aarch64-apple-darwin +0 -0
- package/bin/codex-aarch64-unknown-linux-musl +0 -0
- package/bin/codex-x86_64-apple-darwin +0 -0
- package/bin/codex-x86_64-pc-windows-msvc.exe +0 -0
- package/bin/codex-x86_64-unknown-linux-musl +0 -0
- package/bin/codex.js +105 -136
- package/package.json +2 -71
- package/bin/codex-linux-sandbox-arm64 +0 -0
- package/bin/codex-linux-sandbox-x64 +0 -0
- package/bin/use-native +0 -0
- package/dist/cli.js +0 -1582
- package/dist/cli.js.map +0 -7
package/package.json
CHANGED
|
@@ -1,87 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openai/codex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"bin": {
|
|
6
6
|
"codex": "bin/codex.js"
|
|
7
7
|
},
|
|
8
8
|
"type": "module",
|
|
9
9
|
"engines": {
|
|
10
|
-
"node": ">=
|
|
11
|
-
},
|
|
12
|
-
"scripts": {
|
|
13
|
-
"format": "prettier --check src tests",
|
|
14
|
-
"format:fix": "prettier --write src tests",
|
|
15
|
-
"dev": "tsc --watch",
|
|
16
|
-
"lint": "eslint src tests --ext ts --ext tsx --report-unused-disable-directives --max-warnings 0",
|
|
17
|
-
"lint:fix": "eslint src tests --ext ts --ext tsx --fix",
|
|
18
|
-
"test": "vitest run",
|
|
19
|
-
"test:watch": "vitest --watch",
|
|
20
|
-
"typecheck": "tsc --noEmit",
|
|
21
|
-
"build": "node build.mjs",
|
|
22
|
-
"build:dev": "NODE_ENV=development node build.mjs --dev && NODE_OPTIONS=--enable-source-maps node dist/cli-dev.js",
|
|
23
|
-
"stage-release": "./scripts/stage_release.sh"
|
|
10
|
+
"node": ">=20"
|
|
24
11
|
},
|
|
25
12
|
"files": [
|
|
26
13
|
"bin",
|
|
27
14
|
"dist"
|
|
28
15
|
],
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@inkjs/ui": "^2.0.0",
|
|
31
|
-
"chalk": "^5.2.0",
|
|
32
|
-
"diff": "^7.0.0",
|
|
33
|
-
"dotenv": "^16.1.4",
|
|
34
|
-
"express": "^5.1.0",
|
|
35
|
-
"fast-deep-equal": "^3.1.3",
|
|
36
|
-
"fast-npm-meta": "^0.4.2",
|
|
37
|
-
"figures": "^6.1.0",
|
|
38
|
-
"file-type": "^20.1.0",
|
|
39
|
-
"https-proxy-agent": "^7.0.6",
|
|
40
|
-
"ink": "^5.2.0",
|
|
41
|
-
"js-yaml": "^4.1.0",
|
|
42
|
-
"marked": "^15.0.7",
|
|
43
|
-
"marked-terminal": "^7.3.0",
|
|
44
|
-
"meow": "^13.2.0",
|
|
45
|
-
"open": "^10.1.0",
|
|
46
|
-
"openai": "^4.95.1",
|
|
47
|
-
"package-manager-detector": "^1.2.0",
|
|
48
|
-
"react": "^18.2.0",
|
|
49
|
-
"shell-quote": "^1.8.2",
|
|
50
|
-
"strip-ansi": "^7.1.0",
|
|
51
|
-
"to-rotated": "^1.0.0",
|
|
52
|
-
"use-interval": "1.4.0",
|
|
53
|
-
"zod": "^3.24.3"
|
|
54
|
-
},
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"@eslint/js": "^9.22.0",
|
|
57
|
-
"@types/diff": "^7.0.2",
|
|
58
|
-
"@types/express": "^5.0.1",
|
|
59
|
-
"@types/js-yaml": "^4.0.9",
|
|
60
|
-
"@types/marked-terminal": "^6.1.1",
|
|
61
|
-
"@types/react": "^18.0.32",
|
|
62
|
-
"@types/semver": "^7.7.0",
|
|
63
|
-
"@types/shell-quote": "^1.7.5",
|
|
64
|
-
"@types/which": "^3.0.4",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "^7.18.0",
|
|
66
|
-
"@typescript-eslint/parser": "^7.18.0",
|
|
67
|
-
"boxen": "^8.0.1",
|
|
68
|
-
"esbuild": "^0.25.2",
|
|
69
|
-
"eslint-plugin-import": "^2.31.0",
|
|
70
|
-
"eslint-plugin-react": "^7.32.2",
|
|
71
|
-
"eslint-plugin-react-hooks": "^4.6.0",
|
|
72
|
-
"eslint-plugin-react-refresh": "^0.4.19",
|
|
73
|
-
"husky": "^9.1.7",
|
|
74
|
-
"ink-testing-library": "^3.0.0",
|
|
75
|
-
"prettier": "^3.5.3",
|
|
76
|
-
"punycode": "^2.3.1",
|
|
77
|
-
"semver": "^7.7.1",
|
|
78
|
-
"ts-node": "^10.9.1",
|
|
79
|
-
"typescript": "^5.0.3",
|
|
80
|
-
"vite": "^6.3.4",
|
|
81
|
-
"vitest": "^3.1.2",
|
|
82
|
-
"whatwg-url": "^14.2.0",
|
|
83
|
-
"which": "^5.0.0"
|
|
84
|
-
},
|
|
85
16
|
"repository": {
|
|
86
17
|
"type": "git",
|
|
87
18
|
"url": "git+https://github.com/openai/codex.git"
|
|
Binary file
|
|
Binary file
|
package/bin/use-native
DELETED
|
File without changes
|