{
  "name": "zabbix-utils",
  "version": "2.0.2-patch.1",
  "description": "TypeScript port of zabbix-utils - Python library for working with Zabbix API, Sender, and Getter protocols",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "sync:check": "node scripts/sync-upstream.js",
    "sync:report": "node scripts/sync-upstream.js -o sync-report.md",
    "sync:full": "node scripts/sync-upstream.js -d -o sync-analysis.md"
  },
  "keywords": [
    "zabbix",
    "monitoring",
    "api",
    "sender",
    "getter",
    "typescript",
    "zabbix-utils",
    "zabbix-api",
    "zabbix-sender",
    "zabbix-agent"
  ],
  "author": "Han Yong Lim <hanyong.lim@gmail.com> (TypeScript adaptation of original Python library by Zabbix SIA)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/leroylim/typescript-zabbix-utils.git"
  },
  "bugs": {
    "url": "https://github.com/leroylim/typescript-zabbix-utils/issues"
  },
  "homepage": "https://github.com/leroylim/typescript-zabbix-utils#readme",
  "engines": {
    "node": ">=14.0.0"
  },
  "files": [
    "dist/**/*",
    "LICENSE",
    "README.md",
    "UPSTREAM_SYNC.md"
  ],
  "dependencies": {
    "axios": "^1.6.0",
    "uuid": "^9.0.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^20.0.0",
    "@types/uuid": "^9.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0",
    "eslint": "^8.57.0",
    "jest": "^29.5.0",
    "ts-jest": "^29.1.0",
    "typescript": "^5.0.0"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "collectCoverageFrom": [
      "src/**/*.ts",
      "!src/**/*.d.ts"
    ]
  }
}
