-
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#27c26851e175045a3e274042c96760cf52dce9da",
"@askalf/truecopy": "git+https://github.com/askalf/truecopy.git#951460e003ab16ef86ea5f297c6523c09b4fba4e",
"@askalf/strongroom": "git+https://github.com/askalf/strongroom.git#43c9ca600ced5f9acc755590bc324e95764a5195",
"@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"
}
}