{
  "name": "@influxdata/influxdb3-client",
  "version": "2.2.0",
  "description": "The Client that provides a simple and convenient way to interact with InfluxDB 3.",
  "scripts": {
    "build": "yarn cp ../../README.md ./README.md && yarn run clean && yarn run build:browser && yarn run build:node",
    "build:node": "yarn tsup",
    "build:browser": "yarn tsup --config ./tsup.config.browser.ts",
    "clean": "rimraf --glob dist build coverage .nyc_output doc *.lcov reports",
    "coverage": "nyc mocha --require ts-node/register 'test/**/*.test.ts' --exit",
    "coverage:ci": "yarn run coverage && yarn run coverage:lcov",
    "coverage:lcov": "yarn run --silent nyc report --reporter=text-lcov > coverage/coverage.lcov",
    "cp": "node ../../scripts/cp.js",
    "test": "yarn run lint && yarn run typecheck && yarn run test:all",
    "test:all": "mocha 'test/**/*.test.ts' --exit",
    "test:unit": "mocha 'test/unit/**/*.test.ts' --exit",
    "test:integration": "mocha 'test/integration/**/*.test.ts' --exit",
    "test:ci": "yarn run lint:ci && yarn run test:all --exit --reporter mocha-junit-reporter --reporter-options mochaFile=../../reports/core_mocha/test-results.xml",
    "test:watch": "mocha 'test/unit/**/*.test.ts' --watch-extensions ts --watch",
    "typecheck": "tsc --noEmit --pretty",
    "lint": "eslint src/**/*.ts test/**/*.ts",
    "lint:ci": "yarn run lint --format junit --output-file ../../reports/core_eslint/eslint.xml",
    "lint:fix": "eslint --fix src/**/*.ts"
  },
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "module:browser": "dist/index.browser.mjs",
  "browser": "dist/index.browser.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "browser": {
        "import": "./dist/index.browser.mjs",
        "require": "./dist/index.browser.js",
        "script": "./dist/influxdb.js",
        "default": "./dist/index.browser.js"
      },
      "deno": "./dist/index.browser.mjs",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "homepage": "https://github.com/InfluxCommunity/influxdb3-js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/InfluxCommunity/influxdb3-js",
    "directory": "packages/client"
  },
  "keywords": [
    "influxdb",
    "influxdata"
  ],
  "author": {
    "name": "InfluxData"
  },
  "license": "MIT",
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/chai": "^5.2.3",
    "@types/mocha": "^10.0.0",
    "@types/sinon": "^21.0.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.1",
    "chai": "^6.2.1",
    "esbuild": "^0.28.0",
    "esbuild-runner": "^2.2.1",
    "eslint": "^10.0.2",
    "eslint-config-prettier": "^10.0.1",
    "eslint-formatter-junit": "^9.0.1",
    "eslint-plugin-prettier": "^5.0.0",
    "follow-redirects": "^1.14.7",
    "globals": "^17.3.0",
    "mocha": "^11.0.1",
    "mocha-junit-reporter": "^2.0.2",
    "nock": "^14.0.10",
    "nyc": "^18.0.0",
    "prettier": "^3.0.0",
    "rimraf": "^6.1.2",
    "rxjs": "^7.2.0",
    "sinon": "^21.0.0",
    "ts-node": "^10.9.1",
    "tsup": "^8.0.1",
    "typescript": "^5.1.3"
  },
  "dependencies": {
    "@grpc/grpc-js": "^1.9.9",
    "@protobuf-ts/grpc-transport": "^2.9.1",
    "@protobuf-ts/grpcweb-transport": "^2.9.1",
    "@protobuf-ts/runtime-rpc": "^2.9.1",
    "apache-arrow": "^21.1.0",
    "grpc-web": "^2.0.2"
  },
  "gitHead": "c8848924eb5f29b9e636f4fa4e1c3e5d10a92c5d"
}
