-
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) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.28 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
{
"name": "agent-security-stack",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "The open-source agent-security stack — redstamp + truecopy + strongroom — composed into one layered defense, and exposed as a single MCP server. Part of Own Your Stack.",
"bin": {
"oys-mcp": "./bin/oys-mcp.mjs"
},
"scripts": {
"demo": "node demo.mjs",
"demo:mcp": "node demo/mcp-demo.mjs",
"demo:audit": "node demo/audit-demo.mjs",
"mcp": "node bin/oys-mcp.mjs",
"test": "node --test",
"fuzz": "node fuzz/run.mjs"
},
"dependencies": {
"@askalf/redstamp": "git+https://github.com/askalf/redstamp.git#4022dcd48dc867ef82a8a4c2a6f32f7599b3f701",
"@askalf/truecopy": "git+https://github.com/askalf/truecopy.git#55582d9b89dfdb9bbe6eea8face7ecc85ac21e24",
"@askalf/strongroom": "git+https://github.com/askalf/strongroom.git#9718edcae54b9bdee9f725cc4d5edae4abc2bbf8",
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.4.3"
},
"keywords": [
"ai-agents",
"agent-security",
"mcp",
"own-your-stack",
"demo"
],
"author": "Thomas Sprayberry",
"license": "MIT",
"repository": "github:askalf/agent-security-stack",
"engines": {
"node": ">=20"
},
"overrides": {
"@askalf/redstamp": "$@askalf/redstamp"
}
}