{
  "name": "w3gjs",
  "version": "4.2.0",
  "description": "A native JavaScript WarCraft 3 replay parser implementation.",
  "main": "dist/cjs/index.js",
  "types": "dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.ts",
        "default": "./dist/cjs/index.js"
      }
    }
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=20.x"
  },
  "scripts": {
    "test": "jest --config test/jest.config.js",
    "test:smoke": "node test/smoke/node-cjs.js && node test/smoke/node-esm.mjs && jest --config test/jest.smoke.config.js --no-coverage",
    "test:coverage": "jest --collectCoverage --config test/jest.config.js",
    "lint": "eslint --ext .ts,.js src/ test/ && prettier --check .",
    "lint:fix": "eslint --ext .jsx,.js src/** --fix && prettier --write .",
    "build": "tsc -p tsconfig.build.json && tsc -p tsconfig.esm.json && node scripts/set-package-types.js"
  },
  "dependencies": {
    "protobufjs": "^8.0.1"
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.5",
    "@eslint/js": "^10.0.1",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.5.2",
    "@typescript-eslint/eslint-plugin": "^8.58.0",
    "@typescript-eslint/parser": "^8.58.0",
    "eslint": "^10.2.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.5",
    "jest": "^30.3.0",
    "jest-environment-jsdom": "^30.3.0",
    "jsonschema": "^1.5.0",
    "prettier": "^3.8.1",
    "ts-jest": "^29.4.9",
    "typescript": "^6.0.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/PBug90/w3gjs.git"
  },
  "keywords": [
    "w3g",
    "warcraft",
    "replay",
    "parser"
  ],
  "author": "PBug90",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/PBug90/w3gjs/issues"
  },
  "homepage": "https://github.com/PBug90/w3gjs#readme"
}
