{
  "name": "ts-binary-search",
  "version": "1.1.0",
  "description": "A TypeScript implementation of binary search algorithm for browsers and Node.js",
  "author": "Diego Bogni <diego.bogni@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/diegodiee/ts-binary-search.git"
  },
  "bugs": {
    "url": "https://github.com/diegodiee/ts-binary-search/issues"
  },
  "homepage": "https://github.com/diegodiee/ts-binary-search#readme",
  "keywords": [
    "binary search",
    "typescript",
    "gt",
    "gte",
    "lt",
    "lte"
  ],
  "type": "module",
  "main": "./lib/index.cjs",
  "types": "./lib/types/index.d.ts",
  "exports": {
    "types": "./lib/types/index.d.ts",
    "import": "./lib/index.js",
    "require": "./lib/index.cjs"
  },
  "scripts": {
    "build": "rollup --config",
    "test": "jest"
  },
  "sideEffects": false,
  "devDependencies": {
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^11.1.5",
    "@types/jest": "^29.5.5",
    "jest": "^29.7.0",
    "rollup": "^3.29.4",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "tslib": "^2.6.2",
    "typescript": "^5.2.2"
  },
  "files": [
    "dist/",
    "lib/"
  ]
}
