-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.14 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
{
"name": "hound-mcp",
"version": "0.3.0",
"mcpName": "io.github.tiluckdave/hound",
"description": "The dependency bloodhound for AI coding agents. Sniffs out vulnerabilities, license risks, and health issues in your dependencies — free, no API keys.",
"keywords": [
"mcp",
"security",
"dependencies",
"vulnerabilities",
"supply-chain",
"audit",
"npm-audit",
"osv",
"deps-dev",
"ai-agent",
"model-context-protocol"
],
"homepage": "https://github.com/tiluckdave/hound-mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/tiluckdave/hound-mcp.git"
},
"bugs": {
"url": "https://github.com/tiluckdave/hound-mcp/issues"
},
"license": "MIT",
"author": {
"name": "Tilak Dave",
"url": "https://github.com/tiluckdave"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"hound-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check src/ tests/",
"typecheck": "tsc --noEmit",
"check": "pnpm typecheck && pnpm lint && pnpm test",
"prepublishOnly": "pnpm check && pnpm build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"packageManager": "pnpm@10.26.1+sha512.664074abc367d2c9324fdc18037097ce0a8f126034160f709928e9e9f95d98714347044e5c3164d65bd5da6c59c6be362b107546292a8eecb7999196e5ce58fa"
}