-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 919 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 919 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "groundtruth",
"version": "0.1.13",
"description": "A completion-claim gate for Claude Code. Refuses to let the agent say work is done without verification evidence in the same turn.",
"license": "MIT",
"type": "module",
"bin": {
"groundtruth": "./bin/groundtruth.mjs"
},
"scripts": {
"test": "node --test --test-reporter=spec",
"audit": "node bin/groundtruth.mjs audit",
"check": "node bin/groundtruth.mjs check",
"lint": "node --check src/*.mjs bin/*.mjs test/*.mjs"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin",
"src",
"skills",
"hooks",
"LICENSE",
"README.md",
"ARCHITECTURE.md",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/vnmoorthy/groundtruth.git"
},
"keywords": [
"claude-code",
"agent",
"verification",
"hook",
"skill",
"ai-coding"
]
}