-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.13 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
{
"name": "codex-changeguard",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "Evidence-bound Codex ChangeGuard Plugin — diagnosis, verified isolated recovery, and local release governance",
"type": "module",
"engines": {
"node": ">=20"
},
"bin": {
"changeguard": "./bin/changeguard.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.tests.json --noEmit",
"test": "npm run build && tsc -p tsconfig.tests.json && node --test --test-concurrency=1 'dist-tests/tests/**/*.test.js'",
"check:boundary": "node scripts/check-production-boundary.mjs",
"package": "node scripts/package-plugin.mjs",
"package:smoke": "node scripts/package-smoke.mjs",
"package:clean-profile": "node scripts/clean-profile-smoke.mjs",
"ready:local": "node scripts/local-readiness.mjs",
"verify:release": "node scripts/verify-release.mjs",
"harness:macos": "node scripts/run-macos-harness.mjs",
"cli": "node bin/changeguard.js"
},
"devDependencies": {
"@types/node": "^22.15.30",
"typescript": "^5.8.3"
}
}