{
  "name": "@tabula-lens/react",
  "version": "0.4.0",
  "private": false,
  "type": "module",
  "description": "React component for viewing database data",
  "author": "viti-mg <victormargon@yahoo.es>",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/Atsytec/tabula-lens.git",
    "directory": "packages/react"
  },
  "bugs": {
    "url": "https://github.com/Atsytec/tabula-lens/issues"
  },
  "homepage": "https://github.com/Atsytec/tabula-lens/tree/main/packages/react#readme",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18"
  },
  "sideEffects": false,
  "keywords": [
    "react",
    "database",
    "table",
    "pagination",
    "sorting",
    "filtering",
    "tanstack-table",
    "tanstack-query",
    "postgresql",
    "database-viewer",
    "data-grid",
    "react-component"
  ],
  "dependencies": {
    "@base-ui/react": "^1.6.0",
    "@tanstack/react-query": "^5.0.0",
    "@tanstack/react-table": "^8.0.0",
    "react": "^19.2.7",
    "react-dom": "^19.2.7"
  },
  "devDependencies": {
    "@testing-library/jest-dom": "^6.0.0",
    "@testing-library/react": "^16.3.2",
    "@testing-library/user-event": "^14.0.0",
    "@types/node": "^26.1.1",
    "@types/react": "^19.2.17",
    "@types/react-dom": "^19.2.3",
    "@vitejs/plugin-react": "^6.0.3",
    "jsdom": "^29.1.1",
    "tsup": "^8.0.0",
    "typescript": "5.9.2",
    "vitest": "^4.1.10",
    "vite": "^8.1.4"
  },
  "peerDependencies": {
    "react": "^19.2.7",
    "react-dom": "^19.2.7"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "lint": "eslint . --ext .ts,.tsx",
    "check-types": "tsc --noEmit",
    "test": "vitest"
  }
}