{
  "name": "nano-binary-search",
  "description": "Tiny, zero-dependency binary search and sorted-array operations (indexOf, includes, insert, remove) for JavaScript and TypeScript. Every result is a valid Array.splice() index — no bounds checks, no off-by-one. Equivalent to std::lower_bound / bisect_left.",
  "version": "1.1.0",
  "type": "module",
  "main": "index.js",
  "types": "index.d.ts",
  "exports": {
    ".": "./index.js"
  },
  "scripts": {
    "start": "tape6-server --trace",
    "test": "tape6 --flags FO",
    "test:bun": "tape6-bun --flags FO",
    "test:deno": "tape6-deno --flags FO",
    "test:proc": "tape6-proc --flags FO",
    "test:proc:bun": "bun run `tape6-proc --self` --flags FO",
    "test:proc:deno": "deno run -A `tape6-proc --self` --flags FO -r -A",
    "test:seq": "tape6-seq --flags FO",
    "test:seq:bun": "bun run `tape6-seq --self` --flags FO",
    "test:seq:deno": "deno run -A `tape6-seq --self` --flags FO",
    "ts-test": "tape6 --flags FO 'tests/test-*.*ts'",
    "ts-test:bun": "tape6-bun --flags FO 'tests/test-*.*ts'",
    "ts-test:deno": "tape6-deno --flags FO 'tests/test-*.*ts'",
    "ts-check": "tsc --noEmit",
    "lint": "prettier --check .",
    "lint:fix": "prettier --write ."
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/uhop/nano-binary-search.git"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/uhop"
  },
  "bugs": {
    "url": "https://github.com/uhop/nano-binary-search/issues"
  },
  "homepage": "https://github.com/uhop/nano-binary-search#readme",
  "keywords": [
    "binary search",
    "bisect",
    "bisect-left",
    "bisect-right",
    "lower bound",
    "upper bound",
    "sorted array",
    "insertion point",
    "equal range",
    "insort",
    "splice",
    "comparator",
    "typescript",
    "zero dependencies"
  ],
  "author": "Eugene Lazutkin <eugene.lazutkin@gmail.com> (https://www.lazutkin.com/)",
  "license": "BSD-3-Clause",
  "files": [
    "index.*",
    "LICENSE",
    "README.md",
    "llms.txt",
    "llms-full.txt"
  ],
  "tape6": {
    "tests": [
      "tests/test-*.*js"
    ],
    "importmap": {
      "imports": {
        "tape-six": "/node_modules/tape-six/index.js",
        "nano-binary-search": "/index.js"
      }
    }
  },
  "devDependencies": {
    "prettier": "^3.9.5",
    "tape-six": "^1.15.0",
    "tape-six-proc": "^1.3.1",
    "typescript": "^7.0.2"
  }
}
