-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.16 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
72
73
74
75
76
77
78
79
{
"name": "@askalf/fieldpass",
"version": "0.5.1",
"description": "Governed agentic browser — an indirect-prompt-injection firewall and action gate that wraps a CDP browser so agents can read untrusted web pages safely. Part of the Own Your Stack agent-security suite (redstamp · strongroom · truecopy · cordon).",
"type": "module",
"main": "src/index.mjs",
"bin": {
"fieldpass": "bin/picket.mjs",
"fieldpass-mcp": "bin/picket-mcp.mjs",
"picket": "bin/picket.mjs",
"picket-mcp": "bin/picket-mcp.mjs"
},
"scripts": {
"test": "node --test",
"demo": "node demo/run-demo.mjs",
"demo:escalation": "node demo/escalation-demo.mjs",
"demo:mcp": "node demo/mcp-demo.mjs",
"calibrate:judge": "node demo/calibrate-judge.mjs",
"capture:live": "node demo/capture-live.mjs",
"e2e:live": "node demo/e2e-live.mjs",
"demo:broker": "node demo/broker-demo.mjs",
"demo:oracle": "node demo/oracle-demo.mjs",
"demo:skill": "node demo/skill-demo.mjs",
"demo:incidents": "node incidents/run-incidents.mjs",
"mcp": "node bin/picket-mcp.mjs",
"scan": "node bin/picket.mjs"
},
"keywords": [
"prompt-injection",
"agent-security",
"browser-automation",
"cdp",
"puppeteer",
"lethal-trifecta",
"ai-safety"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"node-html-parser": "^9.0.1",
"zod": "^4.4.3"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.117.1",
"puppeteer-core": "^25.3.0"
},
"license": "MIT",
"author": "Sprayberry Labs",
"homepage": "https://github.com/askalf/fieldpass#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/askalf/fieldpass.git"
},
"bugs": {
"url": "https://github.com/askalf/fieldpass/issues"
},
"engines": {
"node": ">=20"
},
"files": [
"src",
"bin",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@jazzer.js/core": "4.0.0",
"fast-check": "^4.8.0"
},
"overrides": {
"fast-uri": "^3.1.5",
"@hono/node-server": "^2.0.5",
"hono": "^4.12.34",
"brace-expansion": "^1.1.16"
}
}