{
  "name": "array-join",
  "version": "4.0.0",
  "description": "Join (SQL-like) two iterables by a common key.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/iredchuk/array-join"
  },
  "type": "module",
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "types": "./dist/index.d.ts",
  "author": {
    "name": "Igor Redchuk",
    "email": "redchuk@gmail.com"
  },
  "keywords": [
    "array",
    "arrays",
    "iterable",
    "join",
    "left-join",
    "full-join",
    "util"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "test": "tsx --test --experimental-test-coverage test/*.test.ts",
    "test:watch": "tsx --test --watch test/*.test.ts",
    "build": "tsc -p tsconfig.build.json",
    "prepare": "npm test && npm run build"
  },
  "devDependencies": {
    "@types/node": "^24.12.0",
    "prettier": "^3.8.1",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3"
  }
}
