{
  "name": "bodhi-node-profiler",
  "version": "1.1.0",
  "description": "A lightweight, zero-configuration performance profiler for Node.js applications with real-time dashboard",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.mjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "src",
    "bin",
    "dashboard",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup src/index.ts --dts --format cjs,esm",
    "test": "jest",
    "prepublishOnly": "npm run build",
    "example": "node example/app.js"
  },
  "bin": {
    "bodhi-profiler": "./bin/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/BODHEESH/bodhi-node-profiler.git"
  },
  "keywords": [
    "profiler",
    "node",
    "performance",
    "monitoring",
    "metrics",
    "debug",
    "memory-leak",
    "cpu-profiling",
    "apm",
    "application-monitoring",
    "performance-monitoring",
    "real-time",
    "dashboard",
    "analytics",
    "debugging",
    "optimization",
    "memory-usage",
    "cpu-usage",
    "event-loop",
    "api-monitoring",
    "response-time",
    "typescript",
    "devops",
    "development-tools",
    "diagnostics",
    "logging",
    "profiling-tool",
    "web-dashboard",
    "performance-metrics",
    "node-profiler",
    "server-monitoring",
    "backend-tools",
    "microservices",
    "observability",
    "performance-analysis",
    "resource-monitoring",
    "system-metrics",
    "troubleshooting",
    "web-performance",
    "bodhi-profiler",
    "bodhi-node-profiler"
  ],
  "author": "Bodheesh VC <vcbodheesh@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/BODHEESH/bodhi-node-profiler/issues"
  },
  "homepage": "https://github.com/BODHEESH/bodhi-node-profiler#readme",
  "dependencies": {
    "express": "^4.18.2",
    "chart.js": "^4.4.1",
    "pidusage": "^3.0.2",
    "winston": "^3.11.0",
    "winston-daily-rotate-file": "^4.7.1",
    "chalk": "^4.1.2",
    "tailwindcss": "^3.4.1"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/node": "^18.0.0",
    "typescript": "^4.7.4",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "tsup": "^8.0.1"
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}