{
  "name": "use-antd-resizable-header",
  "version": "3.2.2",
  "description": "antd resizable header column hook",
  "type": "module",
  "keywords": [
    "react",
    "antd",
    "resizable header"
  ],
  "license": "MIT",
  "homepage": "https://github.com/hemengke1997/use-antd-resizable-header",
  "bugs": {
    "url": "https://github.com/hemengke1997/use-antd-resizable-header/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hemengke1997/use-antd-resizable-header.git"
  },
  "author": "hemengke1997",
  "files": [
    "dist"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    },
    "./style.css": "./dist/style.css",
    "./*": "./*"
  },
  "typesVersions": {
    "*": {
      "*": [
        "./*"
      ]
    }
  },
  "sideEffects": false,
  "peerDependencies": {
    "react": ">=16.8.0",
    "react-dom": ">=16.8.0"
  },
  "dependencies": {
    "react-resizable": "^3.0.5"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.6.0",
    "@minko-fe/commitlint-config": "^2.1.2",
    "@minko-fe/eslint-config": "^4.1.1",
    "@minko-fe/prettier-config": "^2.2.3",
    "@minko-fe/tsconfig": "^2.1.1",
    "@testing-library/dom": "^8.20.1",
    "@testing-library/jest-dom": "^5.17.0",
    "@testing-library/react": "^13.4.0",
    "@testing-library/user-event": "^14.5.2",
    "@types/lodash.debounce": "^4.0.9",
    "@types/node": "^22.9.3",
    "@types/react": "^18.3.12",
    "@types/react-dom": "^18.3.1",
    "@types/react-resizable": "^3.0.8",
    "@vitest/ui": "^2.1.5",
    "antd": "^5.22.2",
    "autoprefixer": "^10.4.20",
    "bumpp": "^9.8.1",
    "conventional-changelog-cli": "^5.0.0",
    "eslint": "^9.15.0",
    "jsdom": "^21.1.2",
    "lodash.debounce": "^4.0.8",
    "postcss": "^8.4.49",
    "postcss-import": "^16.1.0",
    "postcss-nested": "^6.2.0",
    "postcss-simple-vars": "^7.0.1",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "rimraf": "^6.0.1",
    "simple-git-hooks": "^2.11.1",
    "terser": "^5.36.0",
    "tsup": "8.3.0",
    "tsup-plugin-bundleless": "^1.2.0",
    "typescript": "^5.7.2",
    "vite": "^5.4.11",
    "vitest": "^2.1.5"
  },
  "simple-git-hooks": {
    "commit-msg": "npm run commitlint",
    "pre-commit": "npm run lint"
  },
  "prettier": "@minko-fe/prettier-config",
  "commitlint": {
    "extends": [
      "@minko-fe/commitlint-config"
    ]
  },
  "scripts": {
    "dev": "rimraf dist && tsup --watch",
    "build": "rimraf dist && tsup",
    "build:pages": "pnpm run build && cd playground && pnpm run build",
    "test": "vitest",
    "test:ui": "vitest --ui",
    "commitlint": "commitlint -e",
    "lint": "tsc --noEmit && eslint . --fix",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "bump": "bumpp package.json -c --no-push -t --all -x \"npm run changelog\""
  }
}