vigile-scan 2.1.0 → 3.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -5
- package/dist/index.js +62 -5
- package/dist/index.js.map +1 -1
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vigile-scan",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Security scanner for AI agent tools — detect tool poisoning, permission abuse, and supply chain attacks in MCP servers and agent skills",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -21,7 +21,10 @@
|
|
|
21
21
|
"test": "vitest run",
|
|
22
22
|
"test:watch": "vitest",
|
|
23
23
|
"test:coverage": "vitest run --coverage",
|
|
24
|
-
"
|
|
24
|
+
"audit:check": "npm audit --omit=dev --audit-level=moderate",
|
|
25
|
+
"audit:all": "npm audit --audit-level=moderate",
|
|
26
|
+
"preversion": "npm run build && npm test && npm run audit:check",
|
|
27
|
+
"prepublishOnly": "npm run build && npm test && npm run audit:check"
|
|
25
28
|
},
|
|
26
29
|
"keywords": [
|
|
27
30
|
"mcp",
|
|
@@ -63,9 +66,12 @@
|
|
|
63
66
|
"ora": "^8.1.0"
|
|
64
67
|
},
|
|
65
68
|
"devDependencies": {
|
|
69
|
+
"@eslint/js": "^10.0.1",
|
|
66
70
|
"@types/node": "^20.11.0",
|
|
71
|
+
"eslint": "^10.0.3",
|
|
67
72
|
"tsup": "^8.0.0",
|
|
68
73
|
"typescript": "^5.4.0",
|
|
74
|
+
"typescript-eslint": "^8.56.1",
|
|
69
75
|
"vitest": "^2.0.0"
|
|
70
76
|
}
|
|
71
77
|
}
|