{
  "name": "tnsr-client",
  "version": "1.0.3",
  "description": "TypeScript API client for Netgate TNSR network routers with RESTCONF support",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.js",
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "docs",
    "README.md"
  ],
  "scripts": {
    "build": "tsc",
    "prepare": "npm run build",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "dev": "bun --watch src/index.ts",
    "lint": "eslint src/**/*.ts",
    "type-check": "tsc --noEmit",
    "prepublishOnly": "npm run build && npm test"
  },
  "keywords": [
    "tnsr",
    "netgate",
    "restconf",
    "network",
    "router",
    "api",
    "typescript",
    "yang",
    "traffic-statistics",
    "pbr",
    "blackhole"
  ],
  "author": "Emir Kabal <me@emirkabal.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/emirkabal/tnsr-client.git"
  },
  "bugs": {
    "url": "https://github.com/emirkabal/tnsr-client/issues"
  },
  "homepage": "https://github.com/emirkabal/tnsr-client#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/node": "^20.0.0",
    "typescript": "^5.0.0",
    "eslint": "^8.0.0",
    "@typescript-eslint/eslint-plugin": "^6.0.0",
    "@typescript-eslint/parser": "^6.0.0"
  },
  "dependencies": {
    "axios": "^1.11.0"
  },
  "peerDependencies": {
    "typescript": "^5"
  }
}
