{
  "name": "node-coap-client",
  "version": "3.0.0",
  "description": "Clientside implementation of the CoAP protocol with DTLS support.",
  "keywords": [
    "coap",
    "coaps",
    "dtls",
    "iot",
    "tradfri"
  ],
  "type": "module",
  "main": "./build/CoapClient.js",
  "exports": {
    ".": {
      "types": "./build/CoapClient.d.ts",
      "default": "./build/CoapClient.js"
    }
  },
  "types": "./build/CoapClient.d.ts",
  "author": {
    "name": "AlCalzone",
    "email": "d.griesel@gmx.net"
  },
  "contributors": [
    "chrisEff (https://github.com/chrisEff)"
  ],
  "license": "MIT",
  "homepage": "https://github.com/AlCalzone/node-coap-client",
  "files": [
    "build/"
  ],
  "devDependencies": {
    "@alcalzone/release-script": "^5.1.1",
    "@alcalzone/release-script-plugin-license": "^5.1.1",
    "@tsconfig/node22": "^22.0.5",
    "@types/debug": "4.1.13",
    "@types/node": "^22.19.17",
    "@types/yargs": "^17.0.35",
    "oxlint": "^1.61.0",
    "rimraf": "^6.1.3",
    "semver": "^7.7.4",
    "typescript": "6.0.3",
    "vitest": "^4.1.2",
    "yargs": "^17.7.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AlCalzone/node-coap-client.git"
  },
  "dependencies": {
    "debug": "^4.4.3",
    "node-dtls-client": "^2.0.2"
  },
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "build": "tsc",
    "prebuild": "rimraf ./build",
    "prepack": "npm run build",
    "watch": "tsc --watch",
    "test:ts": "vitest run",
    "test:watch": "vitest",
    "test": "npm run test:ts",
    "lint:ts": "oxlint --deny-warnings --vitest-plugin src",
    "lint": "npm run lint:ts",
    "release": "release-script"
  },
  "readme": "README.md"
}
