{
  "name": "zhonya",
  "version": "1.2.2",
  "description": "A simple and typed League of Legends API wrapper for Node.js",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "keywords": [
    "lol",
    "riot",
    "riot-api",
    "league-of-legends",
    "league",
    "lol-api",
    "riot-games",
    "typescript",
    "node",
    "wrapper"
  ],
  "scripts": {
    "build": "tsc",
    "start": "npm run build && node dist/index.js",
    "dev": "ts-node-dev 'src/index.ts'",
    "publish:dev": "./bin/publish-dev.sh",
    "lint": "eslint . --ext .ts",
    "prettier": "prettier --write .",
    "prepare": "npm run build"
  },
  "files": [
    "dist",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/pedrorreiro/zhonya.git"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/node": "^22.14.1",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.2",
    "ts-node-dev": "^2.0.0",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "axios": "^1.8.4",
    "dotenv": "^16.5.0"
  }
}
