openai/codex-action

Public

mirrored from https://github.com/openai/codex-actionAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v1.9

Branches

Tags

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

Clone

HTTPS

Download ZIP

package.json

24lines · 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 "test": "pnpm run build && node --test test/*.test.mjs"
10 },
11 "dependencies": {
12 "@actions/core": "^1.11.1",
13 "@octokit/graphql": "^8.2.2",
14 "@octokit/rest": "^21.1.1",
15 "commander": "14.0.1",
16 "string-argv": "0.3.2"
17 },
18 "devDependencies": {
19 "@types/node": "^20.12.7",
20 "esbuild": "^0.23.0",
21 "typescript": "^5.4.5"
22 },
23 "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
24}
25