{
  "name": "@2bad/ryanair",
  "version": "8.0.0",
  "description": "Unofficial typescript client for the Ryanair API that allows you to easily retrieve information about airports, flights and prices.",
  "keywords": [
    "api-client",
    "api",
    "client",
    "rest-client",
    "rest",
    "ryanair",
    "typescript"
  ],
  "homepage": "https://github.com/2BAD/ryanair#readme",
  "bugs": {
    "url": "https://github.com/2BAD/ryanair/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/2BAD/ryanair.git"
  },
  "license": "MIT",
  "author": "2BAD (https://github.com/2BAD)",
  "contributors": [
    {
      "name": "Jason Hyde",
      "email": "github@2bad.me",
      "url": "https://github.com/mrhyde"
    }
  ],
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./build/index.d.ts",
        "default": "./build/index.js"
      }
    }
  },
  "files": [
    "build"
  ],
  "dependencies": {
    "date-fns": "4.1.0",
    "fast-cartesian": "9.0.1",
    "got": "15.0.5",
    "hpagent": "1.2.0",
    "zod": "4.4.3"
  },
  "engines": {
    "node": ">=26"
  },
  "scripts": {
    "build": "tsdown",
    "check": "run-p check:**",
    "check:code": "oxlint ./source",
    "check:format": "oxfmt --check ./source",
    "fix": "run-p fix:**",
    "fix:code": "oxlint --fix ./source",
    "fix:format": "oxfmt ./source",
    "preversion": "run-s check test build",
    "test": "vitest run",
    "test:integration": "vitest run integration --coverage",
    "test:unit": "vitest run unit --coverage"
  }
}