{
  "name": "better-result",
  "version": "2.8.2",
  "description": "Lightweight Result type with generator-based composition",
  "keywords": [
    "error-handling",
    "functional",
    "generator",
    "result",
    "typescript"
  ],
  "homepage": "https://better-result.dev",
  "bugs": {
    "url": "https://github.com/dmmulroy/better-result/issues"
  },
  "license": "MIT",
  "author": "Dillon Mulroy <dillon.mulroy@gmail.com> (https://github.com/dmmulroy)",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dmmulroy/better-result.git"
  },
  "files": [
    "dist/index.d.mts",
    "dist/index.mjs"
  ],
  "type": "module",
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "default": "./dist/index.mjs"
    }
  },
  "scripts": {
    "build": "tsdown",
    "prepublishOnly": "bun run build",
    "test": "bun test src/",
    "check": "tsc --noEmit",
    "lint": "oxlint .",
    "fmt": "oxfmt .",
    "fmt:check": "oxfmt --check ."
  },
  "devDependencies": {
    "@types/bun": "latest",
    "oxfmt": "^0.23.0",
    "oxlint": "^1.38.0",
    "tsdown": "^0.19.0-beta.5",
    "typescript": "^5.0.0"
  }
}
