{
  "type": "module",
  "name": "@material-table/core",
  "publishConfig": {
    "access": "public"
  },
  "url": "https://material-table-core.github.io/",
  "version": "7.0.0",
  "description": "Datatable for React based on https://material-ui.com/api/table/ with additional features",
  "main": "dist/index.js",
  "module": "dist/esm/index.js",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/index.js"
    }
  },
  "types": "types/index.d.ts",
  "files": [
    "dist",
    "types"
  ],
  "scripts": {
    "start": "npx webpack serve --config ./__tests__/demo/webpack.config.js --mode development --progress",
    "build:esbuild": "ts-node esbuild.config.cjs",
    "build:babel": "npx babel src -d dist --config-file ./babel.config.cjs",
    "build": "npm run build:babel",
    "lint": "npm run eslint && npm run tsc",
    "eslint": "npx eslint src/** -c ./.eslintrc --ignore-path ./.eslintignore",
    "tsc": "npx tsc --noEmit --lib es6,dom --skipLibCheck types/index.d.ts",
    "lint:fix": "npx eslint src/** -c ./.eslintrc --ignore-path ./.eslintignore --fix",
    "prettify": "npx prettier -c ./.prettierrc --write **/*.js",
    "pretest": "npm run build",
    "test": "npx jest --config=jest.config.cjs",
    "test:build": "npx jest __tests__/post.build.test.js --config=jest.config.cjs",
    "prerelease:major": "npm run test",
    "prerelease:minor": "npm run test",
    "prerelease:patch": "npm run test",
    "release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
    "release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor -m 'Release v%s' && npm run git:push:tags",
    "release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch -m 'Release v%s' && npm run git:push:tags",
    "git:push:tags": "git push origin && git push origin --tags"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint && pretty-quick --staged"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/material-table-core/core.git"
  },
  "keywords": [
    "react",
    "material-ui",
    "material",
    "mui",
    "datatable",
    "table"
  ],
  "author": "Mehmet Baran, @material-table/core contributors",
  "license": "MIT",
  "bugs": {
    "url": "https://material-table-core.github.io/"
  },
  "homepage": "https://material-table-core.github.io/",
  "devDependencies": {
    "@babel/cli": "^7.12.10",
    "@babel/core": "^7.12.10",
    "@babel/plugin-proposal-class-properties": "^7.12.1",
    "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
    "@babel/plugin-transform-runtime": "^7.12.10",
    "@babel/preset-env": "^7.12.11",
    "@babel/preset-react": "^7.12.10",
    "@testing-library/jest-dom": "^6.9.1",
    "@testing-library/react": "^16.3.0",
    "@types/jest": "^26.0.20",
    "@types/react": "^18.2.14",
    "@webpack-cli/serve": "^1.2.1",
    "babel-eslint": "^10.1.0",
    "babel-jest": "^26.6.3",
    "babel-loader": "^8.2.2",
    "babel-plugin-import": "^1.13.3",
    "babel-plugin-module-resolver": "^5.0.0",
    "baseline-browser-mapping": "^2.10.19",
    "buble": "^0.20.0",
    "check-dts": "^0.6.7",
    "core-js": "^3.31.0",
    "esbuild": "^0.8.57",
    "eslint": "^7.16.0",
    "eslint-config-defaults": "^9.0.0",
    "eslint-config-standard": "^16.0.2",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-only-warn": "^1.0.2",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-react": "^7.21.5",
    "generate-changelog": "^1.8.0",
    "husky": "1.2.0",
    "jest": "^26.6.3",
    "jest-canvas-mock": "^2.3.0",
    "prettier": "^2.2.1",
    "pretty-quick": "2.0.1",
    "react": ">=19.2.0",
    "react-dom": ">=19.2.0",
    "react-test-renderer": ">=19.2.0",
    "ts-node": "^10.1.0",
    "typescript": "^4.1.3",
    "webpack": "^5.11.0",
    "webpack-bundle-analyzer": "^4.3.0",
    "webpack-cli": "^4.10.0",
    "webpack-dev-server": "^3.11.0"
  },
  "dependencies": {
    "@babel/runtime": "^7.19.0",
    "@date-io/core": "^3.0.0",
    "@date-io/date-fns": "^3.0.0",
    "@emotion/core": "^11.0.0",
    "@emotion/react": "^11.10.4",
    "@emotion/styled": "^11.10.4",
    "@hello-pangea/dnd": "^18.0.1",
    "@mui/icons-material": ">=7.3.4",
    "@mui/material": ">=7.3.4",
    "@mui/x-date-pickers": "8.15.0",
    "classnames": "^2.3.2",
    "date-fns": "^3.2.0",
    "debounce": "^1.2.1",
    "deep-eql": "^4.1.1",
    "deepmerge": "^4.2.2",
    "uuid": "^9.0.0",
    "zustand": "^5.0.8"
  },
  "peerDependencies": {
    "react": ">=19.2.0",
    "react-dom": ">=19.2.0"
  }
}
