-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 872 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "@openai/codex-action",
"version": "0.0.0",
"description": "GitHub Action to run codex exec via the Codex CLI with accompanying helper steps",
"private": true,
"scripts": {
"build": "esbuild src/main.ts --sourcemap=inline --format=cjs --bundle --platform=node --target=node20 --outdir=dist",
"check": "tsc --noEmit",
"test": "pnpm run build && node --test test/*.test.mjs"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@octokit/graphql": "^8.2.2",
"@octokit/rest": "^21.1.1",
"commander": "14.0.1",
"string-argv": "0.3.2"
},
"devDependencies": {
"@types/node": "^20.12.7",
"esbuild": "^0.23.0",
"typescript": "^5.4.5"
},
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
}