-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.26 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.26 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "codex-hooks",
"version": "0.1.27",
"description": "Codex-native hook policy runtime for local safety guardrails.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codex-hooks/codex-hooks.git"
},
"homepage": "https://github.com/codex-hooks/codex-hooks#readme",
"bugs": {
"url": "https://github.com/codex-hooks/codex-hooks/issues"
},
"keywords": [
"codex",
"hooks",
"policy",
"json-schema",
"cli",
"safety"
],
"engines": {
"node": ">=20"
},
"bin": {
"codex-hooks": "./src/adapters/cli.mjs"
},
"files": [
"README.md",
"LICENSE",
"CHANGELOG.md",
"src/",
"schema/",
"policy/",
"skills/",
"lib/",
"docs/handbook/",
"examples/",
"scripts/",
"test/"
],
"scripts": {
"test": "node --test test/*.test.mjs src/events/*/test.mjs",
"cli": "node src/adapters/cli.mjs",
"check:handbook": "node scripts/check-handbook.mjs docs/handbook",
"check:stale": "node scripts/check-stale-runtime.mjs",
"smoke": "node scripts/smoke-pre-tool-use.mjs",
"verify": "npm run check:handbook && npm run check:stale && node src/adapters/cli.mjs policy requirements sync && npm test && npm run smoke"
}
}