{
  "name": "typesense-docsearch-react",
  "description": "React package for DocSearch, customized to work with Typesense",
  "version": "3.4.1",
  "license": "MIT",
  "homepage": "https://typesense.org/docs/latest/guide/docsearch.html",
  "repository": "typesense/docsearch.js",
  "contributors": [
    {
      "name": "Algolia, Inc.",
      "url": "https://www.algolia.com"
    },
    {
      "name": "Typesense, Inc.",
      "url": "https://typesense.org"
    }
  ],
  "sideEffects": false,
  "files": [
    "dist/",
    "style/",
    "button.js",
    "modal.js"
  ],
  "source": "src/index.ts",
  "types": "dist/esm/index.d.ts",
  "module": "dist/esm/index.js",
  "main": "dist/umd/index.js",
  "umd:main": "dist/umd/index.js",
  "unpkg": "dist/umd/index.js",
  "jsdelivr": "dist/umd/index.js",
  "scripts": {
    "build:clean": "rm -rf ./dist",
    "build:esm": "babel src --root-mode upward --extensions '.ts,.tsx' --out-dir dist/esm",
    "build:types": "tsc -p ./tsconfig.declaration.json --outDir ./dist/esm",
    "build:umd": "rollup --config",
    "build": "yarn build:clean && yarn build:umd && yarn build:esm && yarn build:types",
    "on:change": "concurrently \"yarn build:esm\" \"yarn build:types\"",
    "watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
  },
  "dependencies": {
    "@algolia/autocomplete-core": "1.8.2",
    "@algolia/autocomplete-preset-algolia": "1.8.2",
    "typesense": "^1.7.2",
    "typesense-docsearch-css": "^0.4.1",
    "typesense-instantsearch-adapter": "^2.7.1"
  },
  "peerDependencies": {
    "@types/react": ">= 16.8.0 < 19.0.0",
    "react": ">= 16.8.0 < 19.0.0",
    "react-dom": ">= 16.8.0 < 19.0.0"
  },
  "peerDependenciesMeta": {
    "@types/react": {
      "optional": true
    },
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  }
}
