{
  "name": "cs2-inspect-lib",
  "version": "4.0.0",
  "description": "Enhanced CS2 Inspect URL library with full protobuf support, validation, and error handling",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "cs2inspect": "dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build && npm test",
    "dev": "ts-node --files src/cli.ts",
    "docs": "typedoc src/index.ts"
  },
  "keywords": [
    "cs2",
    "counter-strike",
    "inspect",
    "url",
    "protobuf",
    "steam",
    "gaming",
    "typescript"
  ],
  "author": "sak0a",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sak0a/cs2-inspect-lib.git"
  },
  "bugs": {
    "url": "https://github.com/sak0a/cs2-inspect-lib/issues"
  },
  "homepage": "https://sak0a.github.io/cs2-inspect-lib/",
  "files": [
    "dist/**/*",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=22.12.0"
  },
  "dependencies": {
    "commander": "^15.0.0",
    "node-cs2": "^2.3.0",
    "steam-user": "^5.3.0"
  },
  "overrides": {
    "steam-appticket": "^2.0.1"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.9.3",
    "@typescript-eslint/eslint-plugin": "^8.61.0",
    "@typescript-eslint/parser": "^8.61.0",
    "eslint": "^10.4.1",
    "jest": "^30.4.2",
    "ts-jest": "^29.4.11",
    "ts-node": "^10.9.2",
    "typedoc": "^0.28.19",
    "typescript": "^6.0.3"
  },
  "jest": {
    "testEnvironment": "node",
    "transform": {
      "^.+\\.tsx?$": [
        "ts-jest",
        {
          "tsconfig": "tsconfig.test.json"
        }
      ]
    },
    "roots": [
      "<rootDir>/src",
      "<rootDir>/tests"
    ],
    "testMatch": [
      "**/__tests__/**/*.ts",
      "**/?(*.)+(spec|test).ts"
    ],
    "collectCoverageFrom": [
      "src/**/*.ts",
      "!src/cli.ts",
      "!src/**/*.d.ts"
    ],
    "coverageDirectory": "coverage",
    "coverageReporters": [
      "text",
      "lcov",
      "html"
    ]
  }
}
