package.json•1.17 kB
{
"name": "risk-audit-mcp",
"version": "0.1.1",
"private": false,
"type": "module",
"description": "Risk Audit MCP server that scans projects for security issues (XSS, injections, etc.)",
"bin": {
"risk-audit": "dist/index.js",
"risk-audit-mcp": "dist/index.js"
},
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"mcp": "node dist/index.js --mcp-stdio",
"scan": "node dist/index.js --scan . --format ascii --style unicode --icons emoji",
"test": "npm run build && vitest run",
"test:watch": "npm run build && vitest",
"prepare": "npm run build",
"prepack": "npm run build"
},
"keywords": [
"mcp",
"security",
"xss",
"sast",
"scanner"
],
"author": "Rachel Larralde",
"repository":"github:rachellarralde/risk-audit-mcp",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/node": "^20.11.30",
"typescript": "^5.4.0",
"tsx": "^4.7.0",
"vitest": "^1.6.0"
},
"files": [
"dist",
"rules",
"README.md"
]
}