{
  "name": "@ravenstrike/agent",
  "version": "1.0.1",
  "description": "Production-ready detection-engineering agent for SOC teams. Features platform-agnostic LLM query generation, RAG log ingestion, SOAR integration, and native MCP support.",
  "type": "module",
  "main": "src/index.js",
  "exports": {
    ".": "./src/index.js",
    "./schemas/*": "./schemas/*"
  },
  "bin": {
    "ravenstrike": "bin/ravenstrike.js"
  },
  "scripts": {
    "start": "node bin/ravenstrike.js",
    "dash": "node bin/ravenstrike.js dashboard",
    "run": "node bin/ravenstrike.js run",
    "mcp": "node bin/ravenstrike.js mcp",
    "ingest:rag": "node src/adapters/rag/ingest.js",
    "test": "node --test tests/*.test.js",
    "test:smoke": "node bin/ravenstrike.js run --input \"/sigma encoded PowerShell\" --platform CrowdStrike",
    "validate": "node scripts/validate.mjs",
    "check:public": "node scripts/check-public-repo.mjs",
    "check": "npm run test && npm run validate && npm run check:public",
    "release:check": "npm run check && npm audit --audit-level=high --omit=dev && npm pack --dry-run",
    "prepublishOnly": "npm run release:check"
  },
  "keywords": [
    "soc",
    "siem",
    "soar",
    "sigma",
    "mitre-attack",
    "detection-engineering",
    "security-operations",
    "terminal-dashboard"
  ],
  "author": "purnanandiboina",
  "license": "MIT",
  "engines": {
    "node": ">=20"
  },
  "files": [
    "bin/",
    "src/",
    "schemas/",
    "docs/",
    "!docs/superpowers/",
    "examples/",
    "README.md",
    "SECURITY.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/purnanandiboina/RAVENSTRIKE.git"
  },
  "homepage": "https://github.com/purnanandiboina/RAVENSTRIKE#readme",
  "bugs": {
    "url": "https://github.com/purnanandiboina/RAVENSTRIKE/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "ajv": "^8.17.1",
    "blessed": "^0.1.81",
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "uuid": "^11.0.3"
  }
}
