{
  "version": "1.15.1",
  "license": "MIT",
  "name": "material-react-table",
  "description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",
  "author": "Kevin Vandy",
  "keywords": [
    "react-table",
    "material-ui",
    "material-table",
    "tanstack table",
    "data table"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/KevinVandy/material-react-table"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/kevinvandy"
  },
  "homepage": "https://www.material-react-table.com/",
  "bugs": {
    "url": "https://github.com/KevinVandy/material-react-table/issues"
  },
  "main": "dist/cjs/index.js",
  "module": "dist/esm/material-react-table.esm.js",
  "typings": "dist/index.d.ts",
  "files": [
    "dist",
    "locales",
    "src"
  ],
  "size-limit": [
    {
      "path": "dist/cjs/index.js",
      "limit": "54 KB"
    },
    {
      "path": "dist/esm/material-react-table.esm.js",
      "limit": "50 KB"
    }
  ],
  "engines": {
    "node": ">=14"
  },
  "scripts": {
    "build": "pnpm lib:build",
    "build-locales": "pnpm lib:build-locales",
    "build-no-locales": "pnpm lib:build-no-locales",
    "dev": "pnpm lib:dev",
    "lib:build": "rm -rf dist && pnpm build-no-locales && pnpm build-locales",
    "lib:build-locales": "rm -rf locales && node build-locales.mjs",
    "lib:build-no-locales": "rm -rf dist && rollup -c rollup.config.mjs && size-limit",
    "lib:dev": "rollup -c rollup.config.mjs --watch",
    "lint": "eslint .",
    "size": "size-limit",
    "storybook": "pnpm storybook:dev",
    "storybook:build": "storybook build",
    "storybook:dev": "storybook dev -p 6006"
  },
  "devDependencies": {
    "@babel/core": "^7.23.2",
    "@babel/preset-react": "^7.22.15",
    "@emotion/react": "^11.11.1",
    "@emotion/styled": "^11.11.0",
    "@faker-js/faker": "^8.1.0",
    "@mui/icons-material": "^5.14.13",
    "@mui/material": "^5.14.13",
    "@rollup/plugin-babel": "^6.0.4",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-typescript": "^11.1.5",
    "@size-limit/preset-small-lib": "^9.0.0",
    "@storybook/addon-a11y": "^7.4.6",
    "@storybook/addon-essentials": "^7.4.6",
    "@storybook/addon-interactions": "^7.4.6",
    "@storybook/addon-links": "^7.4.6",
    "@storybook/addon-storysource": "^7.4.6",
    "@storybook/blocks": "^7.4.6",
    "@storybook/react": "^7.4.6",
    "@storybook/react-vite": "^7.4.6",
    "@storybook/testing-library": "^0.2.2",
    "@types/node": "^20.8.6",
    "@types/react": "^18.2.28",
    "@types/react-dom": "^18.2.13",
    "@typescript-eslint/eslint-plugin": "^6.7.5",
    "@typescript-eslint/parser": "^6.7.5",
    "@vitejs/plugin-react": "^4.1.0",
    "eslint": "^8.51.0",
    "eslint-plugin-mui-path-imports": "^0.0.15",
    "prop-types": "^15.8.1",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-is": "^18.2.0",
    "rollup": "^2.79.1",
    "rollup-plugin-copy": "^3.5.0",
    "rollup-plugin-dts": "^6.1.0",
    "rollup-plugin-peer-deps-external": "^2.2.4",
    "size-limit": "^9.0.0",
    "storybook": "^7.4.6",
    "storybook-dark-mode": "^3.0.1",
    "tslib": "^2.6.2",
    "typescript": "^5.2.2",
    "vite": "^4.4.11"
  },
  "peerDependencies": {
    "@emotion/react": ">=11",
    "@emotion/styled": ">=11",
    "@mui/icons-material": ">=5",
    "@mui/material": ">=5",
    "react": ">=17.0",
    "react-dom": ">=17.0"
  },
  "dependencies": {
    "@tanstack/match-sorter-utils": "8.8.4",
    "@tanstack/react-table": "8.10.7",
    "@tanstack/react-virtual": "3.0.0-beta.65",
    "highlight-words": "1.2.2"
  }
}