package.json•1.27 kB
{
"name": "hexdocs-mcp",
"version": "0.6.0",
"description": "MCP server for searching Hex package documentation",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"hexdocs-mcp": "dist/index.js"
},
"files": [
"dist",
"bin"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "echo \"No tests specified\"",
"postinstall": "test -f dist/index.js && node dist/index.js --check-binary || echo 'Skipping binary check (dist not built yet)'"
},
"keywords": [
"hexdocs",
"mcp",
"embeddings",
"search",
"vector",
"documentation",
"model-context-protocol",
"ai",
"semantic-search"
],
"author": "Bradley Golden",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bradleygolden/hexdocs-mcp.git"
},
"bugs": {
"url": "https://github.com/bradleygolden/hexdocs-mcp/issues"
},
"homepage": "https://github.com/bradleygolden/hexdocs-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=22.0.0"
}
}