{
  "name": "react-table-power",
  "version": "1.0.1",
  "description": "A powerful, modern, and highly reusable DataTable component for React with TypeScript support",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "type": "module",
  "sideEffects": [
    "*.css",
    "./dist/styles.css",
    "./dist/client.mjs",
    "./dist/client.cjs",
    "./dist/nextjs/client.mjs",
    "./dist/nextjs/client.cjs"
  ],
  "style": "dist/styles.css",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./client": {
      "types": "./dist/index.d.ts",
      "import": "./dist/client.mjs",
      "require": "./dist/client.cjs"
    },
    "./styles": {
      "import": "./dist/styles.mjs",
      "require": "./dist/styles.cjs",
      "default": "./dist/styles.css"
    },
    "./css": "./dist/styles.css",
    "./styles.css": "./dist/styles.css",
    "./nextjs": {
      "types": "./dist/nextjs/client.d.ts",
      "import": "./dist/nextjs/client.mjs",
      "require": "./dist/nextjs/client.cjs"
    }
  },
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup && node build-fix.js",
    "dev": "tsup --watch",
    "lint": "eslint \"src/**/*.{ts,tsx}\"",
    "test": "vitest",
    "prepublishOnly": "npm run build",
    "build:clean": "rm -rf dist && npm run build",
    "type-check": "tsc --noEmit"
  },
  "keywords": [
    "react",
    "datatable",
    "table",
    "component",
    "typescript",
    "ui",
    "tanstack",
    "react-table",
    "pagination",
    "sorting",
    "filtering",
    "export",
    "crud",
    "modern",
    "shadcn",
    "tailwind"
  ],
  "author": "DanhDeveloper",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/danhnhdeveloper308/react-table-power"
  },
  "homepage": "https://github.com/danhnhdeveloper308/react-table-power#readme",
  "bugs": {
    "url": "https://github.com/danhnhdeveloper308/react-table-power/issues"
  },
  "dependencies": {
    "@tanstack/react-virtual": "^3.13.9",
    "clsx": "^2.1.1",
    "framer-motion": "^11.0.0",
    "jspdf": "^2.5.1",
    "jspdf-autotable": "^3.8.2",
    "papaparse": "^5.4.1",
    "react-virtual": "^2.10.4",
    "tailwind-merge": "^3.3.0",
    "xlsx": "^0.18.5"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "@types/papaparse": "^5.3.14",
    "@types/react": "^18.0.0",
    "@types/react-dom": "^18.0.0",
    "@typescript-eslint/eslint-plugin": "^6.15.0",
    "@typescript-eslint/parser": "^6.15.0",
    "autoprefixer": "^10.4.16",
    "eslint": "^8.56.0",
    "eslint-plugin-react": "^7.33.2",
    "eslint-plugin-react-hooks": "^4.6.0",
    "postcss": "^8.4.31",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "tsup": "^8.0.2",
    "typescript": "^5.8.3",
    "vitest": "^1.1.0"
  },
  "peerDependencies": {
    "@tanstack/react-table": "^8.0.0",
    "react": "^17.0.0 || ^18.0.0",
    "react-dom": "^17.0.0 || ^18.0.0",
    "react-hook-form": "^7.0.0",
    "zod": "^3.0.0"
  },
  "peerDependenciesMeta": {
    "react-hook-form": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  }
}