openai/codex-action

Public

mirrored fromhttps://github.com/openai/codex-actionAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
a6adb840fd2cf6ca115560373dbc4accd1d686c6

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

package.json

23lines · modecode

1{
2 "name": "@openai/codex-action",
3 "version": "0.0.0",
4 "description": "GitHub Action to run codex exec via the Codex CLI with accompanying helper steps",
5 "private": true,
6 "scripts": {
7 "build": "esbuild src/main.ts --sourcemap=inline --format=cjs --bundle --platform=node --target=node20 --outdir=dist",
8 "check": "tsc --noEmit"
9 },
10 "dependencies": {
11 "@actions/core": "^1.11.1",
12 "@octokit/graphql": "^8.2.2",
13 "@octokit/rest": "^21.1.1",
14 "commander": "14.0.1",
15 "string-argv": "0.3.2"
16 },
17 "devDependencies": {
18 "@types/node": "^20.12.7",
19 "esbuild": "^0.23.0",
20 "typescript": "^5.4.5"
21 },
22 "packageManager": "pnpm@10.17.1"
23}
24