{
  "name": "search-optimizer",
  "version": "2.0.2",
  "description": "An optimized, framework-agnostic solution for handling search-as-you-type functionality",
  "author": "Mazin Islam <mazinislam431@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/N1ghtHunter/search-optimizer"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    },
    "./adapters/*": {
      "types": "./dist/adapters/*/index.d.ts",
      "import": "./dist/adapters/*/index.js",
      "require": "./dist/adapters/*/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "directories": {
    "test": "test"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "build": "npm run clean && tsc",
    "test": "jest",
    "prepare": "npm run build",
    "lint": "eslint \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\" \"examples/**/*.{ts,tsx}\" --fix",
    "format": "prettier --write \"src/**/*.{ts,tsx}\" \"test/**/*.{ts,tsx}\" \"examples/**/*.{ts,tsx}\"",
    "lint-fix": "npm run format && npm run lint",
    "prepublishOnly": "npm run lint-fix && npm run test && npm run build",
    "release": "semantic-release"
  },
  "dependencies": {
    "tslib": "^2.6.2"
  },
  "size-limit": [
    {
      "path": "dist/index.js",
      "gzip": true
    }
  ],
  "keywords": [
    "search",
    "debounce",
    "search-optimizer",
    "autocomplete",
    "search-input",
    "race-condition",
    "input-optimization"
  ],
  "license": "MIT",
  "peerDependencies": {
    "react": "^16.9.0 || ^17.0.0 || ^18.0.0",
    "react-dom": "^16.9.0 || ^17.0.0 || ^18.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=14",
    "npm": ">=6"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.8.0",
    "@commitlint/config-conventional": "^19.8.0",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "^13.0.1",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^11.0.1",
    "@semantic-release/npm": "^12.0.1",
    "@semantic-release/release-notes-generator": "^14.0.3",
    "@size-limit/preset-small-lib": "^11.2.0",
    "@tanstack/react-query": "^5.74.3",
    "@testing-library/dom": "^9.3.4",
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^14.1.2",
    "@testing-library/react-hooks": "^8.0.1",
    "@types/jest": "^29.5.0",
    "@types/node": "^18.15.11",
    "@types/react": "^18.2.48",
    "@types/react-dom": "^18.2.18",
    "@typescript-eslint/eslint-plugin": "^8.30.1",
    "@typescript-eslint/parser": "^8.30.1",
    "conventional-changelog-conventionalcommits": "^8.0.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^10.1.2",
    "eslint-plugin-prettier": "^5.2.6",
    "husky": "^9.1.7",
    "jest": "^29.5.0",
    "jest-environment-jsdom": "^29.7.0",
    "prettier": "^3.5.3",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "semantic-release": "^24.2.3",
    "size-limit": "^11.2.0",
    "source-map-explorer": "^2.5.3",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.4"
  }
}
