@ithena-one/mcp-governance
Version:
Governance layer (Identity, RBAC, Credentials, Audit, Logging, Tracing) for Model Context Protocol (MCP) servers.
83 lines (82 loc) • 2.16 kB
JSON
{
"name": "@ithena-one/mcp-governance",
"version": "1.0.1",
"description": "Governance layer (Identity, RBAC, Credentials, Audit, Logging, Tracing) for Model Context Protocol (MCP) servers.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"scripts": {
"clean": "rimraf dist",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.types.json",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types",
"lint": "eslint src/**/*.ts",
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch --verbose",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ithena-one/mcp-governance-sdk.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"governance",
"rbac",
"audit",
"identity",
"typescript",
"sdk",
"ai",
"llm"
],
"author": "Ithena Team <contact@ithena.ai>",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/ithena-one/mcp-governance-sdk/issues"
},
"homepage": "https://github.com/ithena-one/mcp-governance-sdk#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.84",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"rimraf": "^5.0.10",
"ts-jest": "^29.3.0",
"typescript": "^5.8.2"
},
"dependencies": {
"uuid": "^9.0.1",
"zod": "^3.23.8"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
}
}