package.json•1.58 kB
{
"name": "@rad-security/mcp-server",
"version": "0.0.0",
"description": "RAD Security MCP Server for AI-powered security insights",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-server": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"type-check": "tsc --noEmit",
"lint": "npx eslint src --ext .ts",
"lint:fix": "npx eslint src --ext .ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"start": "node dist/index.js",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rad-security/mcp-server.git"
},
"keywords": [
"mcp",
"security",
"rad-security",
"kubernetes",
"cloud"
],
"author": "RAD Security",
"license": "MIT",
"bugs": {
"url": "https://github.com/rad-security/mcp-server/issues"
},
"homepage": "https://github.com/rad-security/mcp-server#readme",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.12.0",
"cors": "2.8.5",
"express": "4.18.2",
"zod": "3.24.2",
"zod-to-json-schema": "3.24.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "^9.15.0",
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}