{
  "name": "chakra-react-select",
  "version": "4.10.1",
  "description": "A Chakra UI wrapper for the popular library React Select",
  "license": "MIT",
  "author": "Chris Sandvik <chris.sandvik@gmail.com>",
  "homepage": "https://github.com/csandman/chakra-react-select#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/csandman/chakra-react-select.git"
  },
  "bugs": {
    "url": "https://github.com/csandman/chakra-react-select/issues"
  },
  "exports": {
    ".": {
      "module": "./dist/index.mjs",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "check-exports": "attw --pack .",
    "format": "concurrently npm:format:*",
    "format:code": "prettier --write .",
    "format:package": "prettier-package-json --write",
    "lint": "concurrently npm:lint:*",
    "lint:src": "eslint .",
    "lint:types": "tsc --noEmit",
    "lint-fix": "eslint --fix src",
    "prepare": "husky",
    "prepublishOnly": "npm run build",
    "postpublish": "git push --tags",
    "start": "nodemon --watch src --exec npm run build -e ts,tsx"
  },
  "dependencies": {
    "react-select": "5.8.x"
  },
  "peerDependencies": {
    "@chakra-ui/react": "2.x",
    "@emotion/react": "^11.8.1",
    "react": "^18.0.0",
    "react-dom": "^18.0.0"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.16.4",
    "@chakra-ui/react": "^2.10.2",
    "@emotion/react": "^11.13.3",
    "@emotion/styled": "^11.13.0",
    "@trivago/prettier-plugin-sort-imports": "^4.3.0",
    "@types/react": "^18.3.11",
    "@typescript-eslint/eslint-plugin": "^7.14.1",
    "@typescript-eslint/parser": "^7.14.1",
    "concurrently": "^9.0.1",
    "cross-env": "^7.0.3",
    "eslint": "^8.57.0",
    "eslint-config-airbnb": "^19.0.4",
    "eslint-config-airbnb-typescript": "^18.0.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-deprecation": "^3.0.0",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-jsx-a11y": "^6.10.0",
    "eslint-plugin-react": "^7.37.1",
    "eslint-plugin-react-hooks": "^4.6.2",
    "husky": "^9.1.6",
    "lint-staged": "^15.2.10",
    "nodemon": "^3.1.7",
    "prettier": "^3.3.3",
    "prettier-package-json": "^2.8.0",
    "react": "^18.3.1",
    "react-dom": "^18.3.1",
    "tsup": "^8.3.0",
    "typescript": "^5.6.3"
  },
  "keywords": [
    "accessibility",
    "chakra",
    "chakra-ui",
    "combobox",
    "dropdown",
    "input",
    "listbox",
    "menu",
    "multi-select",
    "react",
    "react-select",
    "select"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": "eslint --cache --fix",
    "*": "prettier --ignore-unknown --write",
    "package.json": "prettier-package-json --write"
  }
}
