{
  "name": "try",
  "version": "1.0.3",
  "description": "A 373-byte Spec-Compliant Runtime-Only Implementation of the ECMAScript Try Operator Proposal Result class",
  "keywords": [
    "try",
    "operator",
    "result",
    "safe",
    "error",
    "proposal"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/arthurfiorette/try.git"
  },
  "funding": "https://github.com/arthurfiorette/try?sponsor=1",
  "license": "MIT",
  "author": {
    "name": "Arthur Fiorette",
    "url": "https://arthur.place"
  },
  "contributors": [
    {
      "name": "Szymon Wygnański",
      "url": "https://finalclass.net"
    }
  ],
  "sideEffects": false,
  "type": "module",
  "exports": {
    "import": "./lib/index.js",
    "require": "./dist/index.cjs",
    "types": "./lib/index.d.ts"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "devDependencies": {
    "@arthurfiorette/biomejs-config": "^2.0.1",
    "@biomejs/biome": "^2.3.8",
    "@types/node": "^24.10.1",
    "c8": "^10.1.3",
    "husky": "^9.1.7",
    "tsd": "^0.33.0",
    "tsdown": "^0.17.1",
    "typescript": "^5.9.3"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true,
    "tag": "latest"
  },
  "scripts": {
    "build-cjs": "tsdown lib/index.js --no-dts --sourcemap --platform neutral --format=cjs",
    "format": "biome format --write .",
    "lint": "biome check .",
    "lint-ci": "biome ci .",
    "lint-fix": "biome check --write --unsafe .",
    "test": "c8 --reporter lcov node --test test/**/*.js",
    "test-types": "tsd --show-diff -f test",
    "test-watch": "node --watch --test test/**/*.js"
  }
}