{
  "name": "clickhouse-js-tcp",
  "description": "ClickHouse TCP native protocol driver for Node.js",
  "homepage": "https://github.com/calebeaires/clickhouse-js-tcp",
  "version": "0.1.5",
  "license": "Apache-2.0",
  "author": "calebeaires",
  "keywords": [
    "clickhouse",
    "sql",
    "client",
    "tcp",
    "native-protocol"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/calebeaires/clickhouse-js-tcp.git"
  },
  "private": false,
  "engines": {
    "node": ">=20"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bugs": {
    "url": "https://github.com/calebeaires/clickhouse-js-tcp/issues"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "lint": "oxlint .",
    "lint:fix": "oxlint --fix .",
    "build": "rm -rf dist; tsc",
    "test:unit": "vitest run --config vitest.config.ts",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "test": "vitest run --config vitest.config.ts",
    "prettify": "oxfmt --write .",
    "fmt:check": "oxfmt --check .",
    "prepublishOnly": "npm run build",
    "benchmark": "tsx benchmarks/run.ts"
  },
  "dependencies": {
    "@clickhouse/client-common": "1.18.1"
  },
  "devDependencies": {
    "@clickhouse/client": "^1.18.1",
    "@types/node": "^25.2.3",
    "oxfmt": "^0.36.0",
    "oxlint": "^1.51.0",
    "tsx": "^4.19.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.16"
  }
}
