{
  "name": "yet-another-result-monad",
  "version": "1.1.0",
  "description": "A typed Result monad with zero dependencies, to handle values that may fail, inspired from Rust",
  "main": "dist/index.js",
  "license": "MIT",
  "author": "Filipe Versehgi",
  "repository": {
    "type": "git",
    "url": "https://github.com/filipeversehgi/yet-another-result-monad"
  },
  "scripts": {
    "prepublish": "tsc --project tsconfig.build.json",
    "test": "jest test/"
  },
  "keywords": [
    "result",
    "monad",
    "typescript"
  ],
  "devDependencies": {
    "@types/jest": "^29.5.4",
    "@types/node": "^20.5.4",
    "jest": "^29.6.3",
    "prettier": "^3.0.2",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.1.6"
  },
  "dependencies": {}
}