-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.73 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
71
{
"name": "runtime-proof-kit",
"version": "0.5.5",
"description": "Runtime proof CLI for AI coding agents: browser screenshots, logs, and PR-ready proof reports.",
"type": "module",
"bin": {
"runtime-proof": "dist/cli.js"
},
"types": "./dist/types.d.ts",
"files": [
"dist",
"README.md",
"docs",
"examples",
"assets/readme"
],
"scripts": {
"build": "tsc",
"postbuild": "node scripts/mark-cli-executable.mjs",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"check": "npm run build && npm run test",
"prepare": "npm run build",
"prepack": "npm run build",
"proof:example": "npm run dev -- check --config examples/config/runtime-proof.config.json",
"proof:multi": "npm run dev -- check --config examples/config/multi-check.config.json",
"assets:readme": "node scripts/capture-readme-assets.mjs"
},
"keywords": [
"ai-agents",
"coding-agents",
"agentic-coding",
"vibe-coding",
"ai-coding",
"runtime-verification",
"runtime-proof",
"proof",
"playwright",
"playwright-testing",
"cli",
"ci",
"developer-tools",
"qa",
"screenshots",
"verification",
"smoke-test",
"pr-review"
],
"author": "Orcun Ozbay",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ozbayorcun/runtime-proof-kit.git"
},
"bugs": {
"url": "https://github.com/ozbayorcun/runtime-proof-kit/issues"
},
"homepage": "https://github.com/ozbayorcun/runtime-proof-kit#readme",
"dependencies": {
"playwright": "^1.57.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=20"
}
}