-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "@piiiico/agent-audit",
"version": "0.3.9",
"description": "Security scanner for AI agent tooling \u2014 MCP servers, tool definitions, and agentic pipelines",
"keywords": [
"security",
"mcp",
"ai-agents",
"llm-security",
"prompt-injection",
"owasp",
"tool-poisoning",
"agent-security"
],
"homepage": "https://github.com/piiiico/agent-audit",
"repository": {
"type": "git",
"url": "https://github.com/piiiico/agent-audit"
},
"license": "MIT",
"type": "module",
"files": [
"dist/",
"src/",
"docs/"
],
"bin": {
"agent-audit": "./dist/cli.js",
"agent-audit-mcp": "./dist/mcp-server.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target node --format esm && bun build src/index.ts --outdir dist --target node --format esm && bun build src/mcp-server.ts --outdir dist --target node --format esm",
"dev": "bun run src/cli.ts",
"test": "bun test --path-ignore-patterns 'scan-targets' --path-ignore-patterns 'examples'"
},
"devDependencies": {
"@types/node": "^22.0.0",
"bun-types": "latest",
"wrangler": "^4.80.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0"
}
}