mantine-react-table
Version:
A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.
121 lines • 3.65 kB
JSON
{
"version": "1.3.4",
"license": "MIT",
"name": "mantine-react-table",
"description": "A fully featured Mantine implementation of TanStack React Table V8, written from the ground up in TypeScript.",
"author": "Kevin Vandy",
"keywords": [
"react-table",
"mantine",
"tanstack table",
"data table",
"data grid"
],
"repository": {
"type": "git",
"url": "https://github.com/KevinVandy/mantine-react-table"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/kevinvandy"
},
"homepage": "https://www.mantine-react-table.com/",
"bugs": {
"url": "https://github.com/KevinVandy/mantine-react-table/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/mantine-react-table.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"locales",
"src"
],
"size-limit": [
{
"path": "dist/cjs/index.js",
"limit": "53 KB"
},
{
"path": "dist/esm/mantine-react-table.esm.js",
"limit": "52 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 6007"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-react": "^7.22.15",
"@emotion/react": "^11.11.1",
"@faker-js/faker": "^8.1.0",
"@mantine/core": "^6.0.21",
"@mantine/dates": "^6.0.21",
"@mantine/hooks": "^6.0.21",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.2",
"@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",
"@tabler/icons-react": "2.38.0",
"@types/node": "^20.8.3",
"@types/react": "^18.2.25",
"@types/react-dom": "^18.2.11",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^4.1.0",
"dayjs": "^1.11.10",
"eslint": "^8.51.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-is": "^18.2.0",
"rollup": "^4.0.2",
"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"
},
"dependencies": {
"@tanstack/match-sorter-utils": "8.8.4",
"@tanstack/react-table": "8.10.6",
"@tanstack/react-virtual": "3.0.0-beta.63"
},
"peerDependencies": {
"@emotion/react": ">=11",
"@mantine/core": "^6.0",
"@mantine/dates": "^6.0",
"@mantine/hooks": "^6.0",
"@tabler/icons-react": ">=2.23",
"react": ">=18.0",
"react-dom": ">=18.0"
}
}