{
  "name": "@davepi/ui-react",
  "version": "0.7.0",
  "description": "React components, TanStack Query hooks, AuthProvider, ConfigProvider, and ACL hooks for davepi-ui — the schema-driven admin UI framework for davepi backends.",
  "keywords": [
    "davepi",
    "davepi-ui",
    "react",
    "admin",
    "tanstack-query",
    "auth",
    "schema-driven"
  ],
  "homepage": "https://github.com/projik/davepi-ui#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/projik/davepi-ui.git",
    "directory": "packages/ui-react"
  },
  "bugs": {
    "url": "https://github.com/projik/davepi-ui/issues"
  },
  "license": "MIT",
  "author": "David Baxter <dave@unlockedequity.com>",
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./auth": {
      "types": "./dist/auth/index.d.ts",
      "import": "./dist/auth/index.js"
    },
    "./hooks": {
      "types": "./dist/hooks/index.d.ts",
      "import": "./dist/hooks/index.js"
    },
    "./config": {
      "types": "./dist/config/index.d.ts",
      "import": "./dist/config/index.js"
    },
    "./acl": {
      "types": "./dist/acl/index.d.ts",
      "import": "./dist/acl/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@tanstack/react-query": "^5.62.7",
    "@davepi/ui-core": "^0.6.0"
  },
  "peerDependencies": {
    "react": "^18.0.0 || ^19.0.0",
    "react-dom": "^18.0.0 || ^19.0.0"
  },
  "devDependencies": {
    "typescript": "^5.6.3",
    "tsup": "^8.3.5",
    "vitest": "^2.1.8",
    "@testing-library/react": "^16.1.0",
    "@testing-library/dom": "^10.4.0",
    "jsdom": "^25.0.1",
    "@types/react": "^19.0.1",
    "@types/react-dom": "^19.0.2",
    "@types/node": "^22.10.2",
    "react": "^19.0.0",
    "react-dom": "^19.0.0"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist .turbo"
  }
}