{
  "name": "fast-bm25",
  "version": "0.0.6",
  "description": "High-performance BM25 implementation in TypeScript",
  "type": "module",
  "author": "Vivek Patel <me@patelvivek.dev>",
  "license": "MIT",
  "packageManager": "bun@1.4.0",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "build": "tsup",
    "clean": "rm -rf dist",
    "check-exports": "attw --pack .",
    "check-types-ts7": "bunx --package typescript@7.0.2 tsc --noEmit",
    "test": "bun run build && vitest --run",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write .",
    "check-format": "prettier --check .",
    "ci": "bun run check-format && bun run test && bun run check-types-ts7 && bun run check-exports",
    "prepublishOnly": "bun run ci",
    "version": "bunx changeset version",
    "release": "bun run ci && bun publish"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.5",
    "@changesets/cli": "^2.31.1",
    "@types/bun": "^1.4.0",
    "@types/node": "^22.20.1",
    "prettier": "^3.9.6",
    "tsup": "^8.5.1",
    "vite": "^8.2.2",
    "vitest": "^4.1.11"
  },
  "peerDependencies": {
    "typescript": "^5.6.3 || ^6.0.0 || ^7.0.0"
  },
  "keywords": [
    "bm25",
    "search",
    "information-retrieval",
    "ranking",
    "text-search",
    "okapi",
    "typescript"
  ],
  "files": [
    "dist",
    "LICENSE",
    "README.md",
    "CHANGELOG.md"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      },
      "default": "./dist/index.cjs"
    }
  },
  "engines": {
    "node": ">=14.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "homepage": "https://github.com/patelvivekdev/fast-bm25",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/patelvivekdev/fast-bm25.git"
  },
  "bugs": {
    "url": "https://github.com/patelvivekdev/fast-bm25/issues"
  },
  "dependencies": {
    "porter2": "^1.1.0"
  },
  "overrides": {
    "esbuild": "^0.28.1"
  }
}
