{
  "name": "node-osc",
  "description": "pyOSC inspired library for sending and receiving OSC messages",
  "version": "11.6.0",
  "types": "./types/index.d.mts",
  "exports": {
    ".": {
      "import": {
        "types": "./types/index.d.mts",
        "default": "./lib/index.mjs"
      },
      "require": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/lib/index.js"
      },
      "default": "./lib/index.mjs"
    }
  },
  "imports": {
    "#decode": {
      "require": "./dist/lib/internal/decode.js",
      "default": "./lib/internal/decode.mjs"
    }
  },
  "author": {
    "name": "Myles Borins",
    "email": "myles.borins@gmail.com"
  },
  "engines": {
    "node": "^20.9.0 || ^22.11.0 || >=24.0.0"
  },
  "license": "Apache-2.0",
  "scripts": {
    "clean": "rm -rf dist/ types/",
    "build": "npm run clean && rollup --config rollup.config.mjs && npm run build:types",
    "build:types": "tsc && tsc -p tsconfig.cjs.json",
    "docs": "node scripts/generate-docs.mjs",
    "prepublishOnly": "npm run build",
    "lint": "eslint \"lib/**/*.mjs\" \"test/test-*.mjs\" \"examples/*.js\" \"examples/*.mjs\" \"scripts/*.mjs\" rollup.config.mjs",
    "test": "npm run lint && npm run build && npm run test:esm && npm run test:cjs",
    "test:esm": "tap test/test-*.mjs",
    "test:cjs": "tap dist/test/test-*.js",
    "test:docs": "npm run docs && git diff --exit-code docs/API.md && git ls-files --error-unmatch docs/API.md"
  },
  "contributors": [
    "Hans Hübner <hans.huebner@gmail.com>",
    "Andy Smith <jabber@term.ie>",
    "Myles Borins <myles.borins@gmail.com>"
  ],
  "keywords": [
    "osc",
    "udp"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MylesBorins/node-osc.git"
  },
  "files": [
    "lib/",
    "dist/lib/",
    "dist/types/",
    "types/",
    "docs/",
    "examples/",
    "README.md",
    "LICENSE",
    "SECURITY.md"
  ],
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "eslint": "^10.0.3",
    "eslint-plugin-jsdoc": "^63.0.7",
    "globals": "^17.4.0",
    "jsdoc": "^4.0.5",
    "rollup": "^4.46.2",
    "tap": "^21.1.0",
    "typescript": "^6.0.2"
  }
}
