-
Notifications
You must be signed in to change notification settings - Fork 268
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.51 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.51 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
{
"name": "ecc-agentshield",
"version": "1.6.0",
"description": "Security auditor for AI agent configurations. Scans Claude Code setups for vulnerabilities, misconfigs, and injection risks.",
"type": "module",
"bin": {
"agentshield": "./dist/index.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./miniclaw": {
"import": "./dist/miniclaw/index.js",
"types": "./dist/miniclaw/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"dev": "tsx src/index.ts",
"test": "npm run test:batch:core && npm run test:batch:analysis && npm run test:batch:miniclaw-a && npm run test:batch:miniclaw-b && npm run test:batch:misc",
"test:batch:core": "node scripts/test-batch.mjs core",
"test:batch:analysis": "node scripts/test-batch.mjs analysis",
"test:batch:miniclaw-a": "node scripts/test-batch.mjs miniclaw-a",
"test:batch:miniclaw-b": "node scripts/test-batch.mjs miniclaw-b",
"test:batch:misc": "node scripts/test-batch.mjs misc",
"test:coverage": "vitest --coverage",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"corpus:gate": "node dist/index.js scan --path .github --corpus-gate",
"scan": "tsx src/index.ts scan",
"scan:demo": "tsx src/index.ts scan --path examples/vulnerable"
},
"keywords": [
"claude-code",
"security",
"ai-agent",
"mcp",
"hackathon",
"opus",
"anthropic",
"scanner",
"audit"
],
"author": "Affaan Mustafa",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/affaan-m/agentshield.git"
},
"homepage": "https://github.com/affaan-m/agentshield#readme",
"bugs": {
"url": "https://github.com/affaan-m/agentshield/issues"
},
"files": [
"dist/",
"action.yml",
"assets/ito.svg",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"glob": "^11.0.1",
"smol-toml": "^1.8.0",
"yaml": "^2.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^22.13.0",
"@vitest/coverage-v8": "^4.1.11",
"eslint": "^9.19.0",
"globals": "^17.4.0",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.11"
},
"overrides": {
"ajv": "^6.14.0",
"flatted": "^3.4.0"
},
"engines": {
"node": ">=20"
}
}