{
  "name": "@nexus2520/dep-tracer-mcp-server",
  "version": "0.1.0",
  "description": "MCP server that maps function and component dependencies in Haskell and ReScript codebases — built to help LLMs trace affected code flows for test generation.",
  "type": "module",
  "main": "./build/index.js",
  "bin": {
    "dep-tracer-mcp-server": "build/index.js"
  },
  "files": [
    "build/**/*",
    "helpers/**/*",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
    "dev": "tsc --watch",
    "start": "node build/index.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "claude",
    "dependency-tracing",
    "haskell",
    "rescript",
    "code-analysis",
    "test-generation",
    "static-analysis",
    "ast",
    "graph",
    "call-graph",
    "impact-analysis"
  ],
  "author": "Parth Dogra",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pdogra1299/dep-tracer-mcp.git"
  },
  "bugs": {
    "url": "https://github.com/pdogra1299/dep-tracer-mcp/issues"
  },
  "homepage": "https://github.com/pdogra1299/dep-tracer-mcp#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "sql.js": "^1.12.0",
    "zod": "^3.25.0"
  },
  "optionalDependencies": {
    "better-sqlite3": "^12.9.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.0",
    "@types/node": "^22.15.29",
    "@types/sql.js": "^1.4.11",
    "typescript": "^5.8.3",
    "vitest": "^3.2.0"
  }
}
