forked from tomjwxf/scopeblind-gateway
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.18 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
80
81
82
83
84
85
86
{
"name": "protect-mcp",
"version": "0.10.1",
"mcpName": "com.scopeblind/protect-mcp",
"description": "Fail-closed Cedar policy gate + Ed25519 signed receipts for AI agent tool calls. Denies on any policy error, proves the gate is live with a startup self-test, and turns every decision into a local searchable record you own. The open gate behind Legate by ScopeBlind. scopeblind.com",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"bin": {
"protect-mcp": "dist/cli.js",
"protect-mcp-mcp": "dist/mcp-server.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts src/cli.ts src/demo-server.ts src/hook-server.ts src/hook-patterns.ts src/mcp-server.ts --format cjs,esm --dts --clean",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"policies",
"README.md",
"CHANGELOG.md",
"SECURITY.md"
],
"keywords": [
"scopeblind",
"mcp",
"model-context-protocol",
"security",
"gateway",
"rate-limiting",
"policy",
"audit",
"decision-log",
"tool-protection",
"ai-agent",
"llm-gateway",
"owasp",
"cedar",
"opa",
"ed25519",
"receipts",
"trust-tiers",
"agent-governance",
"claude-code",
"hooks",
"swarm",
"compliance"
],
"author": "Tom Farley <tommy@scopeblind.com>",
"license": "MIT",
"homepage": "https://scopeblind.com",
"repository": {
"type": "git",
"url": "git+https://github.com/scopeblind/scopeblind-gateway.git"
},
"bugs": {
"url": "https://github.com/scopeblind/scopeblind-gateway/issues"
},
"dependencies": {
"@veritasacta/artifacts": "^0.2.2",
"@veritasacta/protocol": "^0.1.0",
"@noble/curves": "^1.9.7",
"@noble/hashes": "^1.8.0"
},
"optionalDependencies": {
"@cedar-policy/cedar-wasm": "^4.9.1",
"@modelcontextprotocol/sdk": "^1.29.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=18.0.0"
}
}