{
  "name": "fp-search-algorithms",
  "type": "module",
  "version": "0.9.0",
  "description": "Functional Programming Style Search Algorithms and Unordered Containers",
  "author": "Harris Miller <harrismillerconsulting@gmail.com>",
  "homepage": "https://github.com/Harris-Miller/fp-search-algorithms",
  "license": "BSD-3-Clause",
  "keywords": [
    "functional",
    "fp",
    "search",
    "algorithm",
    "breadth",
    "depth",
    "dijkstra",
    "astar",
    "a*",
    "yen",
    "hashmap",
    "hashset",
    "directed",
    "graph",
    "priority",
    "queue",
    "containers",
    "unordered"
  ],
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "scripts": {
    "build": "rollup -c",
    "docs": "typedoc ./src/index.ts",
    "lint": "eslint .",
    "test": "bun test",
    "typecheck": "tsc"
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^16.0.0",
    "@rollup/plugin-typescript": "^12.1.2",
    "@types/bun": "latest",
    "@types/ramda": "^0.30.2",
    "eslint-config-harris": "^4.2.3",
    "ramda": "^0.30.1",
    "rollup": "^4.29.1",
    "typedoc": "^0.27.6",
    "typescript": "^5.7.2"
  }
}
