{
  "name": "@tanstack/react-devtools",
  "version": "0.10.0",
  "description": "TanStack Devtools is a set of tools for building advanced devtools for your React application.",
  "author": "Tanner Linsley",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/devtools.git",
    "directory": "packages/react-devtools"
  },
  "homepage": "https://tanstack.com/devtools",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/tannerlinsley"
  },
  "keywords": [
    "react",
    "devtools"
  ],
  "type": "module",
  "types": "dist/esm/index.d.ts",
  "module": "dist/esm/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "files": [
    "dist",
    "src"
  ],
  "dependencies": {
    "@tanstack/devtools": "0.11.0"
  },
  "devDependencies": {
    "@eslint-react/eslint-plugin": "^1.53.1",
    "@types/react": "^19.2.0",
    "@vitejs/plugin-react": "^6.0.1",
    "eslint-plugin-react-compiler": "19.1.0-rc.2",
    "eslint-plugin-react-hooks": "^7.0.1",
    "react": "^19.2.0"
  },
  "peerDependencies": {
    "@types/react": ">=16.8",
    "@types/react-dom": ">=16.8",
    "react": ">=16.8",
    "react-dom": ">=16.8"
  },
  "scripts": {
    "clean": "premove ./build ./dist",
    "test:eslint": "eslint ./src",
    "test:lib": "vitest --passWithNoTests",
    "test:lib:dev": "pnpm test:lib --watch",
    "test:types": "tsc",
    "test:build": "publint --strict",
    "build": "vite build"
  }
}