-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 832 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
25
26
27
28
{
"name": "codex-review-check",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "A credit-aware GitHub Action that waits for Codex review evidence and tells agents how to request it when missing.",
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "ncc build src/index.ts -o dist --minify --source-map",
"test": "tsx --test test/*.test.ts",
"fixtures:update": "UPDATE_MESSAGE_FIXTURES=1 tsx --test test/messages.test.ts",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm test && npm run build"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1"
},
"devDependencies": {
"@types/node": "^24.3.0",
"@vercel/ncc": "^0.38.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}