{
  "name": "@refinedev/devtools-shared",
  "version": "2.0.2",
  "private": false,
  "description": "refine devtools offers a set of features from monitoring to quickly prototyping a UI.",
  "repository": {
    "type": "git",
    "url": "https://github.com/refinedev/refine.git",
    "directory": "packages/devtools"
  },
  "license": "MIT",
  "author": "refine",
  "sideEffects": false,
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "typings": "dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "dependencies": {
    "@tanstack/react-query": "^5.81.5",
    "error-stack-parser": "^2.1.4"
  },
  "devDependencies": {
    "@esbuild-plugins/node-resolve": "^0.1.4",
    "@testing-library/jest-dom": "^6.6.3",
    "@types/node": "^20",
    "@vitest/ui": "^2.1.8",
    "jsdom": "^25.0.1",
    "react-router": "^7.0.2",
    "tslib": "^2.6.2",
    "tsup": "^6.7.0",
    "typescript": "^5.8.3",
    "vitest": "^2.1.8"
  },
  "peerDependencies": {
    "@types/react": "^18.0.0 || ^19.0.0",
    "@types/react-dom": "^18.0.0 || ^19.0.0",
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "attw": "attw --pack .",
    "build": "tsup && node ../shared/generate-declarations.js",
    "dev": "tsup --watch",
    "publint": "publint --strict=true --level=suggestion",
    "test": "vitest run --passWithNoTests",
    "types": "node ../shared/generate-declarations.js"
  }
}