{
  "name": "@f1api/sdk",
  "version": "1.1.0",
  "description": "An SDK for accessing the https://f1api.dev API.",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    "import": "./dist/index.mjs",
    "require": "./dist/index.cjs"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "f1",
    "formula 1",
    "formula1",
    "f1api",
    "sdk",
    "open source",
    "free"
  ],
  "repository": {
    "type": "git",
    "url": "<https://github.com/rafacv23/f1api-sdk.git>"
  },
  "author": "rafacv23",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^22.13.1",
    "tsup": "^8.3.6",
    "typescript": "^5.7.3",
    "vitest": "^3.0.5"
  },
  "dependencies": {
    "isomorphic-unfetch": "^4.0.2"
  },
  "scripts": {
    "build": "tsup src/index.ts --format esm,cjs --dts",
    "test": "vitest"
  }
}