-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.19 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "proofloop",
"version": "0.3.0",
"description": "NodeProof makes coding agents prove the app works. Portable proof-supervisor CLI: gate + hooks + tool-use contracts + kickoff prompt. Zero runtime dependencies.",
"keywords": [
"proof-loop",
"coding-agent",
"claude-code",
"hooks",
"eval",
"gate",
"mcp",
"tool-use",
"agent-reliability",
"stop-hook"
],
"author": "Homen Shum",
"license": "MIT",
"type": "commonjs",
"engines": {
"node": ">=20"
},
"bin": {
"proofloop": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"schemas",
"templates",
"docs",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsc -p tsconfig.json --watch",
"demo": "npm run proofloop:doctor",
"doctor": "npm run proofloop:doctor",
"check": "npm test && npm audit --omit=dev",
"proof": "npm run proofloop:maturity",
"build": "tsc -p tsconfig.json && npm run build:site",
"build:site": "node scripts/build-site.mjs",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"proofloop:init": "npx proofloop init --agent auto --live",
"proofloop:live": "npx proofloop this-repo --live",
"proofloop:gate": "npx proofloop gate",
"proofloop:resume": "npx proofloop resume --dense",
"proofloop:doctor": "npx proofloop doctor --json",
"proofloop:target": "npx proofloop target --write-runner-plan",
"proofloop:hosted": "npx proofloop hosted intake --url https://noderoom.live --app-type agent-app --consent",
"proofloop:hosted-worker": "node scripts/hosted-worker.mjs --request .proofloop/hosted/queue/latest.json",
"proofloop:maturity": "npx proofloop maturity --dense",
"proofloop:productivity": "npx proofloop productivity --write",
"proofloop:report": "npx proofloop report latest",
"proofloop:charts": "npx proofloop charts latest"
},
"devDependencies": {
"@webcontainer/api": "^1.6.4",
"@types/node": "^20.11.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"esbuild": "^0.28.1",
"typescript": "^5.7.2",
"vitest": "^4.1.9"
}
}