{
  "name": "bippy",
  "version": "0.5.41",
  "description": "hack into react internals",
  "keywords": [
    "bippy",
    "fiber",
    "internals",
    "react",
    "react devtools",
    "react fiber",
    "react instrumentation"
  ],
  "homepage": "https://bippy.dev",
  "bugs": {
    "url": "https://github.com/aidenybai/bippy/issues"
  },
  "license": "MIT",
  "author": {
    "name": "Aiden Bai",
    "email": "aiden@million.dev"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aidenybai/bippy.git"
  },
  "files": [
    "dist",
    "src",
    "!src/test/**",
    "bin",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "type": "module",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "browser": "dist/index.iife.js",
  "types": "dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./core": {
      "import": {
        "types": "./dist/core.d.ts",
        "default": "./dist/core.js"
      },
      "require": {
        "types": "./dist/core.d.cts",
        "default": "./dist/core.cjs"
      }
    },
    "./install-hook-only": {
      "import": {
        "types": "./dist/install-hook-only.d.ts",
        "default": "./dist/install-hook-only.js"
      },
      "require": {
        "types": "./dist/install-hook-only.d.cts",
        "default": "./dist/install-hook-only.cjs"
      }
    },
    "./source": {
      "import": {
        "types": "./dist/source.d.ts",
        "default": "./dist/source.js"
      },
      "require": {
        "types": "./dist/source.d.cts",
        "default": "./dist/source.cjs"
      }
    },
    "./dist/*": "./dist/*.js",
    "./dist/*.js": "./dist/*.js",
    "./dist/*.cjs": "./dist/*.cjs"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@jridgewell/sourcemap-codec": "^1.5.0",
    "@testing-library/dom": "^10.4.0",
    "@testing-library/react": "^16.1.0",
    "@types/node": "^20",
    "@types/react": "^19.0.4",
    "@types/react-dom": "^19.0.2",
    "esbuild": "^0.27.0",
    "happy-dom": "^15.11.7",
    "publint": "^0.3.0",
    "react": "19.0.0",
    "react-devtools-inline": "^6.0.1",
    "react-dom": "19.0.0",
    "react-refresh": "^0.16.0",
    "terser": "^5.36.0",
    "tsx": "^4.21.0",
    "vite-plus": "latest"
  },
  "peerDependencies": {
    "react": ">=17.0.1"
  },
  "scripts": {
    "build": "NODE_ENV=production vp pack && tsx scripts/append-banner.ts",
    "dev": "NODE_ENV=development vp pack --watch",
    "publint": "publint",
    "test": "vp test",
    "coverage": "vp test --coverage"
  }
}