package.json•825 B
{
"name": "hashi-vault-mcp",
"version": "0.1.0",
"description": "MCP server for HashiCorp Vault operations",
"type": "module",
"main": "dist/index.js",
"bin": {
"hashi-vault-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "source .env && node dist/index.js",
"watch": "tsc --watch",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"vault",
"hashicorp",
"secrets"
],
"author": "Rod Anami <rod.anami@kyndryl.com>",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.21.1",
"cors": "^2.8.5",
"express": "^4.18.2",
"hashi-vault-js": "file:../hashi-vault-js"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
}
}