{
  "name": "pulse-dashboard",
  "version": "1.2.8",
  "private": false,
  "type": "module",
  "description": "A Next.js Dashboard application for real-time monitoring and historical analysis of Playwright test executions, based on playwright-pulse-report. This component provides the UI for visualizing Playwright test results and can be run as a standalone CLI tool.",
  "author": "Arghajit Singha",
  "license": "MIT",
  "homepage": "https://arghajit47.github.io/playwright-pulse-dashboard/",
  "repository": {
    "type": "git",
    "url": "https://github.com/Arghajit47/playwright-pulse-dashboard"
  },
  "keywords": [
    "react",
    "nextjs",
    "playwright",
    "dashboard",
    "testing",
    "test-reporting",
    "pulse",
    "pulse-reporter",
    "pulse-report",
    "pulse-dashboard",
    "live-reporter",
    "live-playwright-reporter",
    "live-playwright-dashboard",
    "cli"
  ],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "bin": {
    "pulse-dashboard": "bin/pulse-dashboard.js"
  },
  "files": [
    "dist",
    "bin",
    ".next/static",
    ".next/server",
    ".next/*.json",
    ".next/BUILD_ID",
    "!.next/cache",
    "!.next/trace",
    "!.next/trace-build",
    "!.next/turbopack",
    "!.next/types",
    "!.next/**/*.map",
    "!.next/server/pages",
    "!.next/build",
    "!.next/diagnostics",
    "next.config.ts",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "next dev --turbopack -p 9002",
    "build:app": "next build",
    "start": "next start -p 9002",
    "lint": "next lint",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist .next/cache",
    "build:tsc": "tsc --project tsconfig.build.json",
    "build:css": "tailwindcss -i ./src/app/globals.css -o ./dist/styles.css --minify",
    "build": "npm run clean && npm run build:tsc && npm run build:css",
    "prepublishOnly": "npm run build:app && find .next -name \"*.map\" -type f -delete && npm run build",
    "postinstall": "echo \"Pulse Dashboard is an extensive visualization of playwright-pulse-report, kindly run the 'npm install @arghajit/playwright-pulse-report@latest' to install pulse-report package and follow the readme file. If already installed please ignore, happy reporting!\""
  },
  "dependencies": {
    "@radix-ui/react-accordion": "^1.2.3",
    "@radix-ui/react-alert-dialog": "^1.1.6",
    "@radix-ui/react-avatar": "^1.1.3",
    "@radix-ui/react-checkbox": "^1.3.3",
    "@radix-ui/react-dialog": "^1.1.6",
    "@radix-ui/react-dropdown-menu": "^2.1.6",
    "@radix-ui/react-label": "^2.1.2",
    "@radix-ui/react-menubar": "^1.1.6",
    "@radix-ui/react-popover": "^1.1.15",
    "@radix-ui/react-progress": "^1.1.2",
    "@radix-ui/react-radio-group": "^1.2.3",
    "@radix-ui/react-scroll-area": "^1.2.3",
    "@radix-ui/react-select": "^2.1.6",
    "@radix-ui/react-separator": "^1.1.2",
    "@radix-ui/react-slider": "^1.2.3",
    "@radix-ui/react-slot": "^1.1.2",
    "@radix-ui/react-switch": "^1.1.3",
    "@radix-ui/react-tabs": "^1.1.3",
    "@radix-ui/react-toast": "^1.2.15",
    "@radix-ui/react-tooltip": "^1.2.8",
    "@types/node": "^20",
    "@types/recharts": "^1.8.29",
    "ansi-to-html": "^0.7.2",
    "class-variance-authority": "^0.7.1",
    "clsx": "^2.1.1",
    "lucide-react": "^0.574.0",
    "mime-types": "^3.0.1",
    "next": ">=15.0.0",
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0",
    "recharts": "^2.15.1",
    "tailwind-merge": "^3.0.1"
  },
  "peerDependencies": {
    "@arghajit/playwright-pulse-report": ">=0.3.2",
    "next": ">=15.0.0",
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "devDependencies": {
    "@arghajit/playwright-pulse-report": ">=0.3.2",
    "@types/mime-types": "^3.0.1",
    "autoprefixer": "^10.4.19",
    "postcss": "^8",
    "tailwindcss": "^3.4.1",
    "tailwindcss-animate": "^1.0.7",
    "typescript": "^5"
  },
  "publishConfig": {
    "access": "public"
  },
  "overrides": {
    "minimatch": "^10.2.2",
    "@isaacs/brace-expansion": "^5.0.1"
  }
}