-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.55 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": "proofshot",
"version": "1.6.0",
"description": "Open-source, agent-agnostic CLI for visual verification. Your AI coding agent builds a feature — ProofShot records video proof it works.",
"type": "module",
"bin": {
"proofshot": "./dist/bin/proofshot.js"
},
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"postinstall": "node -e \"try { require('child_process').execSync('agent-browser install', { stdio: 'inherit' }) } catch(e) { console.log('Note: Run agent-browser install to set up Chromium') }\""
},
"dependencies": {
"commander": "^12.0.0",
"chalk": "^5.4.0",
"detect-port": "^2.1.0"
},
"peerDependencies": {
"agent-browser": ">=0.1.0"
},
"peerDependenciesMeta": {
"agent-browser": {
"optional": true
}
},
"devDependencies": {
"typescript": "^5.7.0",
"vitest": "^2.1.0",
"tsup": "^8.3.0",
"@types/node": "^22.0.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"skills",
"README.md",
"LICENSE"
],
"license": "MIT",
"keywords": [
"ai",
"coding",
"agent",
"visual",
"testing",
"verification",
"browser",
"automation",
"screenshot",
"video",
"recording",
"claude-code",
"cursor",
"codex",
"copilot",
"proofshot"
],
"repository": {
"type": "git",
"url": "https://github.com/AmElmo/proofshot.git"
}
}