-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.59 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
{
"name": "codeinspectus",
"version": "0.2.1",
"mcpName": "io.github.Synvoya/codeinspectus",
"description": "CodeInspectus, by Synvoya — a local-first, privacy-preserving security MCP server that scans AI-generated code for real vulnerabilities, maps findings to compliance frameworks, and drives a scan → fix → rescan loop. Zero network egress at scan time.",
"license": "MIT",
"author": "Synvoya",
"homepage": "https://codeinspectus.com",
"repository": { "type": "git", "url": "git+https://github.com/Synvoya/codeinspectus.git" },
"bugs": { "url": "https://github.com/Synvoya/codeinspectus/issues" },
"type": "module",
"bin": {
"codeinspectus": "dist/index.js"
},
"files": [
"dist",
"data",
"detection-db",
"engines.lock.json",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsc --noEmit && tsup",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:redaction": "node scripts/redaction-e2e.mjs",
"eval": "tsx evals/run-evals.ts",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js"
},
"keywords": [
"mcp",
"security",
"sast",
"secrets",
"sca",
"sbom",
"compliance",
"opengrep",
"gitleaks",
"trivy",
"ai-code",
"local-first"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^3.25.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.9"
}
}