{
    "name": "@immobiliarelabs/dats",
    "version": "6.0.0",
    "description": "Minimalistic zero-dependencies UDP/TCP statsd client for Node.js",
    "type": "module",
    "bin": {
        "dats": "./dist/dats-cli.js"
    },
    "main": "dist/index.js",
    "exports": {
        ".": {
            "import": "./dist/index.js",
            "types": "./dist/index.d.ts"
        },
        "./mock": {
            "import": "./dist/mock.js",
            "types": "./dist/mock.d.ts"
        }
    },
    "types": "dist/index.d.ts",
    "publishConfig": {
        "registry": "https://registry.npmjs.org/",
        "access": "public"
    },
    "keywords": [
        "nodejs",
        "javascript",
        "client",
        "npm",
        "typescript",
        "tcp",
        "metrics",
        "udp",
        "statsd",
        "ipv6-support apn",
        "timing",
        "gauge",
        "counter",
        "sampling"
    ],
    "scripts": {
        "compile": "mkdir -p .out && bun build --compile --target=bun-linux-x64 src/dats-cli.ts --outfile .out/dats-linux-x64 && bun build --compile --target=bun-linux-arm64 src/dats-cli.ts --outfile .out/dats-linux-arm64 && bun build --compile --target=bun-darwin-x64 src/dats-cli.ts --outfile .out/dats-darwin-x64 && bun build --compile --target=bun-darwin-arm64 src/dats-cli.ts --outfile .out/dats-darwin-arm64 && bun build --compile --target=bun-windows-x64 src/dats-cli.ts --outfile .out/dats-windows-x64.exe",
        "build": "tsc -p tsconfig.json",
        "build:watch": "npm run build -- -w",
        "test": "tap test/*.spec.ts",
        "test:watch": "tap --watch test/*.spec.ts",
        "toc": "markdown-toc -i README.md",
        "prepare": "node prepare.js || echo 'Skipping prepare'"
    },
    "repository": {
        "type": "git",
        "url": "git@github.com:immobiliare/dats.git"
    },
    "homepage": "https://github.com/immobiliare/dats",
    "bugs": {
        "url": "https://github.com/immobiliare/dats/issues"
    },
    "license": "MIT",
    "engines": {
        "node": ">=24.0.0"
    },
    "devDependencies": {
        "@biomejs/biome": "^2.4.15",
        "@commitlint/cli": "^21.0.0",
        "@commitlint/config-conventional": "^21.0.0",
        "@semantic-release/changelog": "^6.0.3",
        "@semantic-release/commit-analyzer": "^13.0.1",
        "@semantic-release/git": "^10.0.1",
        "@semantic-release/github": "^12.0.8",
        "@semantic-release/npm": "^13.1.5",
        "@semantic-release/release-notes-generator": "^14.1.1",
        "@types/node": "^25.7.0",
        "@types/sinon": "^21.0.1",
        "bun": "^1.3.13",
        "lefthook": "^2.1.6",
        "markdown-toc": "^1.2.0",
        "sinon": "^22.0.0",
        "tap": "^21.7.2",
        "typescript": "^6.0.3"
    },
    "volta": {
        "node": "24.15.0",
        "npm": "11.14.0"
    }
}
