{
  "name": "react-pprof",
  "version": "1.5.1",
  "description": "React component for visualizing pprof with WebGL",
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "cli.js",
    "cli-build"
  ],
  "bin": {
    "react-pprof": "./cli.js"
  },
  "scripts": {
    "build": "tsc",
    "build:cli": "webpack --config webpack.cli.config.cjs",
    "generate-bundle": "node scripts/generate-bundle.js",
    "prepare": "npm run build:cli && npm run generate-bundle && npm run build",
    "test": "playwright test --reporter=list",
    "test:headed": "playwright test --headed",
    "test:ui": "playwright test --ui",
    "test:debug": "playwright test --debug",
    "test:flamegraph": "playwright test --reporter=list flamegraph.spec.ts",
    "test:stack-details": "playwright test --reporter=list stack-details.spec.ts",
    "test:integration": "playwright test --reporter=list integration.spec.ts",
    "test:update-snapshots": "playwright test --update-snapshots",
    "lint": "oxlint src/ tests/",
    "lint:fix": "oxlint --fix src/ tests/",
    "typecheck": "tsc --noEmit",
    "storybook": "storybook dev",
    "build-storybook": "storybook build",
    "example-server": "node example-server.js"
  },
  "keywords": [
    "pprof",
    "renderer"
  ],
  "author": "Platformatic Inc. <oss@platformatic.dev> (http://platformatic.dev/)",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/platformatic/react-pprof.git"
  },
  "bugs": {
    "url": "https://github.com/platformatic/react-pprof/issues"
  },
  "homepage": "https://github.com/platformatic/react-pprof#readme",
  "devDependencies": {
    "@datadog/pprof": "^5.9.0",
    "@playwright/test": "^1.56.1",
    "@storybook/addon-docs": "^9.0.17",
    "@storybook/addon-onboarding": "^9.0.17",
    "@storybook/react-webpack5": "^9.0.17",
    "@types/gl-matrix": "^2.4.5",
    "@types/node": "^24.0.15",
    "@types/react": "^19.1.8",
    "@types/react-dom": "^19.1.6",
    "cors": "^2.8.5",
    "css-loader": "^6.10.0",
    "esbuild": "^0.25.7",
    "express": "^4.18.2",
    "html-webpack-plugin": "^5.6.3",
    "oxlint": "^1.7.0",
    "storybook": "^9.0.17",
    "style-loader": "^3.3.4",
    "ts-loader": "^9.5.2",
    "typescript": "^5.8.3",
    "webpack": "^5.100.2",
    "webpack-cli": "^6.0.1",
    "webpack-dev-middleware": "^7.2.1",
    "webpack-dev-server": "^5.2.2"
  },
  "dependencies": {
    "gl-matrix": "^3.4.3",
    "pprof-format": "^2.2.1",
    "protobufjs": "^7.5.3",
    "react": "^19.1.0",
    "react-dom": "^19.1.0"
  }
}