{
  "name": "@polgubau/fuzzy",
  "displayName": "fuzzy",
  "version": "1.0.4",
  "description": "A small and lightweight fuzzy-finder for JavaScript and TypeScript.",
  "keywords": [
    "typescript",
    "fuzzy",
    "polgubau",
    "polgubau/fuzzy"
  ],
  "repository": {
    "directory": "packages/fuzzy",
    "type": "git",
    "url": "git+https://github.com/PolGubau/fuzzy.git"
  },
  "bugs": {
    "url": "https://github.com/PolGubau/fuzzy/issues"
  },
  "license": "MIT",
  "author": {
    "name": "Pol Gubau Amores",
    "email": "gubaupol@gmail.com",
    "url": "https://polgubau.com"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md",
    "CHANGELOG.md",
    "package.json"
  ],
  "maintainers": [
    {
      "name": "Pol Gubau Amores",
      "email": "gubaupol@gmail.com"
    }
  ],
  "contributors": [
    "Pol Gubau Amores <gubaupol@gmail.com> (https://polgubau.com)"
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "browser": "./dist/browser/fuzzy.production.min.mjs",
      "types": "./dist/esm/index.d.mts",
      "import": "./dist/esm/index.mjs",
      "require": "./dist/index.js"
    },
    "./react": {
      "import": "./dist/esm/react/index.mjs",
      "types": "./dist/esm/react/index.d.mts",
      "require": "./dist/react/index.js"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/esm/index.mjs",
  "types": "./dist/esm/index.d.mts",
  "scripts": {
    "build": "tsup",
    "build:watch": "tsup --watch",
    "check": "biome lint --write .",
    "clean": "rm -rf dist",
    "dev": "pnpm build:watch",
    "format": "biome format --write ./src",
    "format-check": "biome format ./src",
    "lint": "biome check ./src",
    "lint-check": "biome lint ./src",
    "lint-fix": "biome check --write .",
    "pack": "npm pack --dry-run",
    "publish": "npm publish --access public",
    "test": "vitest run",
    "test:watch": "vitest",
    "coverage": "vitest run --coverage --root src/",
    "typecheck": "tsc --noEmit"
  },
  "peerDependencies": {
    "@types/react": "^19.0.0",
    "react": "^19.0.0"
  },
  "homepage": "https://github.com/polgubau.com/fuzzy",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@polgubau/biome-config": "^1.0.0",
    "@testing-library/jest-dom": "^6.6.3",
    "@testing-library/react": "^16.2.0",
    "@types/node": "^22.13.10",
    "@types/react": "^19.0.10",
    "@vitest/coverage-v8": "^3.0.8",
    "esbuild-plugin-file-path-extensions": "^2.1.4",
    "jsdom": "^26.0.0",
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "tsup": "^8.4.0",
    "typescript": "^5.8.2",
    "vitest": "^3.0.8"
  },
  "packageManager": "pnpm@10.6.1",
  "engines": {
    "node": ">= 22",
    "npm": "Please use pnpm instead of yarn to install dependencies",
    "pnpm": ">= 9",
    "yarn": "Please use pnpm instead of yarn to install dependencies"
  }
}