-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 767 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 767 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
29
30
{
"name": "proofgate",
"version": "0.1.0",
"description": "Trust-but-verify gate for AI-authored pull requests. Runs the change and checks the AI's claims against reality before merge.",
"type": "module",
"bin": {
"proofgate": "./src/cli.ts"
},
"exports": {
".": "./src/index.ts"
},
"scripts": {
"proofgate": "tsx src/cli.ts",
"github-app": "tsx src/github/server.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"selfcheck": "tsx src/cli.ts run --repo . --base HEAD~1 --head HEAD"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"license": "UNLICENSED"
}