UNPKG

sc-zabbix-api

Version:

TypeScript client for Zabbix JSON-RPC API with token authentication

65 lines (64 loc) 1.54 kB
{ "name": "sc-zabbix-api", "version": "1.0.5", "description": "TypeScript client for Zabbix JSON-RPC API with token authentication", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "type": "module", "scripts": { "build": "tsc", "dev": "tsc --watch", "test": "vitest", "test:ui": "vitest --ui", "test:run": "vitest run", "test:coverage": "vitest run --coverage", "prepublishOnly": "npm run build", "prepack": "npm run build" }, "keywords": [ "zabbix", "api", "typescript", "json-rpc", "monitoring", "zabbix-api", "network-monitoring", "infrastructure-monitoring" ], "author": "Saulo Costa <https://github.com/saulotarsobc>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/saulotarsobc/sc-zabbix-api.git" }, "homepage": "https://github.com/saulotarsobc/sc-zabbix-api#readme", "bugs": { "url": "https://github.com/saulotarsobc/sc-zabbix-api/issues" }, "files": [ "dist", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "dependencies": { "axios": "^1.6.0" }, "devDependencies": { "@types/node": "^20.0.0", "@vitest/coverage-v8": "^3.2.4", "@vitest/ui": "^3.2.4", "dotenv": "^17.2.0", "typescript": "^5.0.0", "vitest": "^3.2.4" }, "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js" } } }