{
  "name": "epicleaderboard-ts",
  "version": "1.1.0",
  "description": "Universal TypeScript SDK for EpicLeaderboard - Works in Node.js and browsers",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "npm run build:esm && npm run build:cjs && npm run build:types",
    "build:esm": "tsc --project tsconfig.esm.json",
    "build:cjs": "tsc --project tsconfig.cjs.json",
    "build:types": "tsc --project tsconfig.types.json",
    "clean": "rimraf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "test": "jest",
    "test:watch": "jest --watch",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix"
  },
  "keywords": [
    "leaderboard",
    "gaming",
    "typescript",
    "sdk",
    "universal",
    "browser",
    "nodejs",
    "epic",
    "scores",
    "highscores"
  ],
  "author": "Mazescape Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jensroth-git/epicleaderboard-ts.git"
  },
  "bugs": {
    "url": "https://github.com/jensroth-git/epicleaderboard-ts/issues"
  },
  "homepage": "https://github.com/jensroth-git/epicleaderboard-ts#readme",
  "devDependencies": {
    "@types/jest": "^29.5.5",
    "@types/node": "^20.8.0",
    "@typescript-eslint/eslint-plugin": "^6.7.0",
    "@typescript-eslint/parser": "^6.7.0",
    "eslint": "^8.50.0",
    "jest": "^29.7.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.1",
    "typescript": "^5.2.2"
  },
  "peerDependencies": {
    "typescript": ">=4.0.0"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "browserslist": [
    "defaults",
    "not ie 11",
    "not op_mini all"
  ]
} 