{
  "name": "ts-error-handling",
  "type": "module",
  "sideEffects": false,
  "version": "0.1.3",
  "description": "A fully typed error handling library for TypeScript inspired by Rust's Result type.",
  "author": "Chris Breuer <chris@stacksjs.org>",
  "license": "MIT",
  "homepage": "https://github.com/stacksjs/ts-error-handling#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stacksjs/ts-error-handling.git"
  },
  "bugs": {
    "url": "https://github.com/stacksjs/ts-error-handling/issues"
  },
  "keywords": [
    "typescript",
    "error-handling",
    "result",
    "rust",
    "neverthrow",
    "functional",
    "railway-oriented-programming",
    "monads",
    "type-safe",
    "async",
    "exceptions"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./*": {
      "import": "./dist/*"
    }
  },
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "bun --bun build.ts",
    "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
    "prepublishOnly": "bun --bun run build",
    "test": "bun test",
    "lint": "bunx --bun pickier .",
    "lint:fix": "bunx --bun pickier . --fix",
    "format": "bunx --bun pickier . --format",
    "format:fix": "bunx --bun pickier . --format --write",
    "format:check": "bunx --bun pickier run . --mode format --check",
    "changelog": "bunx --bun logsmith --verbose",
    "changelog:generate": "bunx --bun logsmith --output CHANGELOG.md",
    "release": "bunx --bun bumpx prompt --recursive",
    "dev:docs": "bun --bun vitepress dev docs",
    "build:docs": "bun --bun vitepress build docs",
    "preview:docs": "bun --bun vitepress preview docs",
    "typecheck": "bun --bun tsc --noEmit",
    "release:patch": "bunx --bun bumpx patch --recursive --commit --tag --push --yes"
  },
  "devDependencies": {
    "better-dx": "^0.2.15",
    "pickier": "^0.1.18"
  },
  "git-hooks": {
    "pre-commit": {
      "staged-lint": {
        "*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier run --mode lint --fix"
      }
    },
    "commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
  },
  "overrides": {
    "typescript": "^7.0.2"
  }
}
