{
  "name": "balar",
  "version": "0.3.0",
  "description": "Write scalar logic for bulk processing workflows.",
  "author": "Luis Meyer",
  "license": "MIT",
  "type": "module",
  "files": [
    "dist/"
  ],
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "scripts": {
    "test": "jest --verbose",
    "build": "tsup src/index.ts --format cjs,esm --dts --clean",
    "watch": "npm run build -- --watch src",
    "prepublishOnly": "npm run test && npm run build"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/object-hash": "^3.0.6",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5",
    "tsup": "^8.4.0",
    "typescript": "^5.7.3"
  },
  "dependencies": {
    "object-hash": "^3.0.0"
  }
}
