{
  "name": "@zipbul/result",
  "version": "1.0.0",
  "description": "Lightweight Result type for error handling without exceptions",
  "license": "MIT",
  "author": "Junhyung Park (https://github.com/parkrevil)",
  "repository": {
    "type": "git",
    "url": "https://github.com/zipbul/toolkit",
    "directory": "packages/result"
  },
  "bugs": "https://github.com/zipbul/toolkit/issues",
  "homepage": "https://github.com/zipbul/toolkit/tree/main/packages/result#readme",
  "keywords": [
    "result",
    "result-type",
    "error-handling",
    "error",
    "either",
    "functional",
    "no-exceptions",
    "bun",
    "typescript",
    "zipbul"
  ],
  "engines": {
    "bun": ">=1.0.0"
  },
  "type": "module",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "publishConfig": {
    "provenance": true
  },
  "scripts": {
    "build": "bun build index.ts --outdir dist --target bun --format esm --production && tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit",
    "test": "bun test",
    "coverage": "bun test --coverage"
  }
}
