{
  "name": "battleye-node",
  "version": "0.9.8",
  "scripts": {
    "build:rollup": "rollup -c ./rollup.config.js",
    "build:types": "tsc -p tsconfig.json --emitDeclarationOnly",
    "build": "npm run build:rollup && npm run build:types"
  },
  "files": ["dist"],
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "types": "./dist/index.d.ts",
  "keywords": [
    "battleye",
    "rcon",
    "dayz",
    "arma"
  ],
  "author": "Kirill Kirpichenko <kirpich-99-biz@mail.ru>",
  "repository": {
    "type": "git",
    "url": "https://github.com/devkirkir/battleye-node.git"
  },
  "bugs": {
    "url": "https://github.com/devkirkir/battleye-node/issues"
  },
  "homepage": "https://github.com/devkirkir/battleye-node",
  "license": "ISC",
  "description": "A TS/JS library for communicating with BattlEye’s RCon (Remote Console) protocol. Easily send commands, receive server responses, and automate server management for games protected by BattlEye anti-cheat.",
  "devDependencies": {
    "@rollup/plugin-terser": "^1.0.0",
    "@rollup/plugin-typescript": "^12.1.4",
    "@types/node": "^25.9.0",
    "tslib": "^2.8.1",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "crc-32": "^1.2.2"
  }
}
