{
  "name": "@proddata/node-cratedb",
  "version": "0.0.20",
  "description": "Node.js client for CrateDB",
  "type": "module",
  "types": "dist/esm/CrateDBClient.d.ts",
  "exports": {
    "import": {
      "types": "./dist/esm/CrateDBClient.d.ts",
      "default": "./dist/esm/CrateDBClient.js"
    },
    "require": {
      "types": "./dist/cjs/CrateDBClient.d.ts",
      "default": "./dist/cjs/CrateDBClient.js"
    }
  },
  "scripts": {
    "build": "npm run build:clean && npm run build:esm && npm run build:cjs",
    "build:clean": "rm -rf dist",
    "build:esm": "tsc --project tsconfig.esm.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
    "build:cjs": "tsc --project tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
    "prepare": "npm run build",
    "format": "prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
    "check-format": "prettier --check 'src/**/*.{ts,tsx,js,jsx}'",
    "lint": "eslint 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}'",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "ci": "npm run check-format && npm run lint && npm test && npm run build",
    "release": "npm run ci && npm version",
    "postrelease": "git push && git push --tags && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/proddata/node-cratedb.git"
  },
  "keywords": [
    "cratedb",
    "crate",
    "database",
    "nodejs",
    "sql",
    "client"
  ],
  "author": "Georg Traar",
  "license": "MIT",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "devDependencies": {
    "@eslint/js": "^9.20.0",
    "@types/node": "^22.13.4",
    "@typescript-eslint/eslint-plugin": "^8.24.0",
    "@typescript-eslint/parser": "^8.24.0",
    "eslint": "^9.20.1",
    "eslint-config-prettier": "^10.0.1",
    "eslint-plugin-prettier": "^5.2.3",
    "globals": "^15.15.0",
    "testcontainers": "^10.14.0",
    "typescript": "^5.7.3",
    "typescript-eslint": "^8.24.0",
    "vitest": "^2.1.5"
  },
  "engines": {
    "node": ">=21.0.0"
  }
}
