{
  "name": "@blizzard-api/sc2",
  "version": "3.0.1",
  "license": "MIT",
  "author": "Putro",
  "description": "A series of helpers to interact with the Starcraft II Blizzard API",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Pewtro/blizzard-api.git",
    "directory": "packages/sc2"
  },
  "type": "module",
  "engines": {
    "node": "^22.13.0 || ^24 || ^26"
  },
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "@blizzard-api/source": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./*": {
      "@blizzard-api/source": "./src/*/index.ts",
      "types": "./dist/*/index.d.ts",
      "default": "./dist/*/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "blizzard",
    "battlenet",
    "battle.net",
    "bnet",
    "api",
    "starcraft",
    "sc2"
  ],
  "dependencies": {},
  "peerDependencies": {
    "@blizzard-api/core": "4.1.0"
  },
  "devDependencies": {
    "@blizzard-api/core": "4.1.0"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "vitest run",
    "test:coverage": "pnpm test -- --coverage",
    "test:watch": "vitest watch"
  }
}