package.json•1.21 kB
{
"name": "@shinzolabs/heimdall",
"version": "1.0.3",
"type": "module",
"description": "An MCP server that proxies other MCP servers and enables granular authorization control for your MCPs.",
"bin": {
"heimdall": "./dist/index.js"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"build:test": "tsc -p ./test/tsconfig.json",
"pretest": "npm run build && npm run build:test",
"start": "node ./dist/index.js",
"setup": "node ./dist/index.js setup",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.integration.config.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"ts-node": "^10.9.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"sdk": "link:@types/@modelcontextprotocol/sdk",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"keywords": [
"mcp",
"authorization",
"control",
"proxy"
],
"author": "Austin Born (austin@shinzolabs.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/shinzo-labs/heimdall"
},
"engines": {
"node": ">=18.0.0"
}
}