-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.24 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.24 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
{
"name": "mguard",
"version": "1.0.1",
"description": "Memory defense for AI agents — stops MINJA, AgentPoison, and MemoryGraft attacks. Zero dependencies.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mguard": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./adapters": {
"types": "./dist/adapters/index.d.ts",
"default": "./dist/adapters/index.js"
},
"./mcp": {
"types": "./dist/mcp.d.ts",
"default": "./dist/mcp.js"
},
"./witness": {
"types": "./dist/witness/index.d.ts",
"default": "./dist/witness/index.js"
},
"./memory": {
"types": "./dist/memory/index.d.ts",
"default": "./dist/memory/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "tsx tests/bulwark.test.ts && tsx tests/witness.test.ts && tsx tests/witness-service.test.ts && tsx tests/witness-consensus.test.ts && tsx tests/memory-firewall.test.ts",
"test:memory": "tsx tests/memory-firewall.test.ts",
"test:core": "tsx tests/bulwark.test.ts",
"demo:support": "tsx examples/customer-support.ts",
"demo:trading": "tsx examples/trading-bot.ts",
"demo:review": "tsx examples/code-review.ts",
"demo:witness": "tsx examples/witness-protocol.ts",
"test:witness": "tsx tests/witness.test.ts",
"mcp": "node dist/mcp.js",
"witness": "tsx src/witness/server.ts",
"test:service": "tsx tests/witness-service.test.ts",
"demo:service": "tsx examples/witness-service.ts",
"demo:consensus": "tsx examples/witness-consensus.ts",
"test:consensus": "tsx tests/witness-consensus.test.ts"
},
"keywords": [
"ai",
"agent",
"memory",
"security",
"poisoning",
"minja",
"defense",
"firewall",
"trust",
"ed25519",
"owasp",
"langchain",
"mem0",
"attestation",
"eu-ai-act",
"compliance"
],
"repository": {
"type": "git",
"url": "https://github.com/mguard-ai/mguard.git"
},
"homepage": "https://github.com/mguard-ai/mguard",
"files": [
"dist",
"LICENSE",
"README.md"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^25.3.5",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}