{
  "name": "react-data-table-component",
  "version": "8.4.0",
  "description": "A fast, feature-rich React data table. Working table in 10 lines.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./locales": {
      "types": "./dist/locales/index.d.ts",
      "import": "./dist/locales/index.mjs",
      "require": "./dist/locales/index.js"
    },
    "./css": "./dist/DataTable.css"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "react",
    "data",
    "table",
    "react-table",
    "react-data-table-component",
    "pagination",
    "sorting",
    "expandable-rows",
    "row-selection",
    "typescript",
    "accessible",
    "themeable",
    "nextjs",
    "dashboard",
    "admin"
  ],
  "homepage": "https://reactdatatable.com",
  "repository": "https://github.com/jbetancur/react-data-table-component",
  "author": "jbetancur",
  "license": "Apache-2.0",
  "scripts": {
    "prepublishOnly": "npm run lint && npm run typecheck && npm test && npm run build",
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write \"src/**/*.{ts,tsx}\"",
    "format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
    "docs": "concurrently -n lib,docs -c blue,green \"tsup --watch\" \"npm run dev --prefix apps/docs\"",
    "docs:dev": "npm run dev --prefix apps/docs",
    "docs:build": "npm run build --prefix apps/docs",
    "docs:preview": "npm run preview --prefix apps/docs",
    "docs:install": "npm install --prefix apps/docs"
  },
  "devDependencies": {
    "@testing-library/dom": "^10.4.1",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.2",
    "@types/react": "^18.3.18",
    "@types/react-dom": "^18.3.5",
    "@typescript-eslint/eslint-plugin": "^8.59.4",
    "@typescript-eslint/parser": "^8.59.4",
    "@vitest/coverage-v8": "^4.1.7",
    "concurrently": "^9.2.1",
    "eslint": "^9.39.4",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-jsx-a11y": "^6.10.2",
    "eslint-plugin-prettier": "^5.2.3",
    "eslint-plugin-react": "^7.37.5",
    "eslint-plugin-react-hooks": "^7.1.1",
    "jsdom": "^29.1.1",
    "prettier": "^3.5.2",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "tsup": "^8.5.1",
    "typescript": "^6.0.3",
    "vitest": "^4.1.7"
  },
  "peerDependencies": {
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  }
}
