-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.12 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.12 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@empowered-humanity/agent-security",
"version": "2.0.0",
"description": "Security scanner for AI agent architectures - 220+ detection patterns and 5 runtime guard modules for prompt injection, SSRF, path traversal, credential exposure, MCP security, and OWASP ASI vulnerabilities",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./patterns": {
"types": "./dist/patterns/index.d.ts",
"default": "./dist/patterns/index.js"
},
"./scanner": {
"types": "./dist/scanner/index.d.ts",
"default": "./dist/scanner/index.js"
},
"./reporters": {
"types": "./dist/reporters/index.d.ts",
"default": "./dist/reporters/index.js"
},
"./guards": {
"types": "./dist/guards/index.d.ts",
"default": "./dist/guards/index.js"
},
"./guards/ssrf": {
"types": "./dist/guards/ssrf.d.ts",
"default": "./dist/guards/ssrf.js"
},
"./guards/download": {
"types": "./dist/guards/download.d.ts",
"default": "./dist/guards/download.js"
},
"./guards/exec-allow": {
"types": "./dist/guards/exec-allow.d.ts",
"default": "./dist/guards/exec-allow.js"
},
"./guards/fs-safe": {
"types": "./dist/guards/fs-safe.d.ts",
"default": "./dist/guards/fs-safe.js"
},
"./guards/webhook": {
"types": "./dist/guards/webhook.d.ts",
"default": "./dist/guards/webhook.js"
}
},
"bin": {
"te-agent-security": "dist/index.js",
"te-as": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"SECURITY.md",
"sbom.json",
"action.yml",
".pre-commit-hooks.yaml"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build && npm test",
"sbom": "node generate-sbom.js"
},
"keywords": [
"security",
"ai-agent",
"prompt-injection",
"scanner",
"llm",
"owasp",
"asi",
"agent-security",
"code-injection",
"credential-detection",
"sast",
"vulnerability-scanner",
"mcp",
"mcp-security",
"taint-analysis",
"ssrf",
"path-traversal",
"webhook-verification",
"runtime-security"
],
"author": "Empowered Humanity <security@empoweredhumanity.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/empowered-humanity/agent-security.git"
},
"bugs": {
"url": "https://github.com/empowered-humanity/agent-security/issues"
},
"homepage": "https://github.com/empowered-humanity/agent-security#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"glob": "^10.3.0",
"ora": "^8.0.0",
"yaml": "^2.3.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"rimraf": "^5.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}