-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.78 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
{
"name": "secrets-detection-mcp",
"version": "1.0.0",
"description": "MCP server for detecting accidentally committed secrets, API keys, tokens, and credentials in your codebase",
"main": "dist/index.js",
"type": "module",
"bin": {
"secrets-detection-mcp": "dist/index.js"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc && ncp src/detector/patterns.json dist/detector/patterns.json",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"test:watch": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --watch",
"test:coverage": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest --coverage",
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"mcp",
"secrets-detection",
"security",
"pattern-matching",
"entropy",
"api-keys",
"credentials",
"tokens",
"passwords",
"scanning"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deja666/secrets-detection-mcp"
},
"bugs": {
"url": "https://github.com/deja666/secrets-detection-mcp/issues"
},
"homepage": "https://github.com/deja666/secrets-detection-mcp#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"glob": "^10.3.10",
"minimatch": "^9.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.10",
"@types/node": "^20.10.0",
"cross-env": "^10.1.0",
"jest": "^29.7.0",
"ncp": "^2.0.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
}
}