{
  "name": "fluent-results",
  "version": "2025.22.11",
  "description": "Tiny, dependency-free TypeScript implementation of the Fluent Results pattern for railway-oriented programming.",
  "keywords": [
    "result",
    "fluent",
    "railway",
    "monad",
    "functional",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/pnagoorkar/fluent-results.git"
  },
  "bugs": {
    "url": "https://github.com/pnagoorkar/fluent-results/issues"
  },
  "homepage": "https://github.com/pnagoorkar/fluent-results#readme",
  "author": "Prashant Nagoorkar",
  "license": "MIT",
  "engines": {
    "node": ">=18"
  },
  "sideEffects": false,
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "rimraf dist",
    "build": "npm run clean && tsc -p tsconfig.json",
    "test": "jest",
    "prepare": "npm run build"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "jest": "^29.7.0",
    "ts-jest": "^29.3.4",
    "typescript": "^5.8.3",
    "rimraf": "^5.0.5"
  }
}
