{
  "name": "ravendb",
  "version": "7.2.0",
  "description": "RavenDB client for Node.js",
  "files": [
    "dist"
  ],
  "type": "module",
  "homepage": "https://ravendb.net",
  "main": "./dist/commonjs/index.js",
  "types": "./dist/commonjs/index.d.ts",
  "module": "./dist/esm/index.js",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/commonjs/index.d.ts",
        "default": "./dist/commonjs/index.js"
      }
    }
  },
  "scripts": {
    "test": "mocha \"test/**/*.ts\"",
    "prepare": "tshy",
    "watch": "tsc --watch",
    "lint": "eslint {src,test}/**/*.ts",
    "check-exports": "node ./scripts/reportMissingTopLevelExports.js",
    "check-imports": "node scripts/clearGlobalExports.js && tsc -p tsconfig.imports-check.json"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ravendb/ravendb-nodejs-client"
  },
  "bugs": {
    "email": "support@ravendb.net",
    "url": "https://issues.hibernatingrhinos.com"
  },
  "contributors": [
    "Hibernating Rhinos"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "keywords": [
    "ravendb",
    "ravendb-client",
    "typescript",
    "node",
    "nodejs",
    "nosql"
  ],
  "author": "Hibernating Rhinos",
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^9.8.0",
    "@swc/core": "^1.7.26",
    "@types/mocha": "^10.0.7",
    "@types/sinon": "^17.0.3",
    "@types/unzipper": "^0.10.10",
    "class-transformer": "^0.5.1",
    "eslint": "^8.57.0",
    "eslint-plugin-unicorn": "^54.0.0",
    "glob": "^11.0.0",
    "globals": "^15.9.0",
    "http-proxy-agent": "^7.0.2",
    "lodash.orderby": "^4.6.0",
    "mocha": "^10.7.0",
    "open": "^10.1.0",
    "reflect-metadata": "^0.2.2",
    "sinon": "^18.0.0",
    "ts-node": "^10.9.2",
    "tshy": "^3.0.2",
    "typescript": "^5.5.4",
    "typescript-eslint": "^7.18.0",
    "unzipper": "^0.12.3"
  },
  "dependencies": {
    "@types/node": "^20.14.14",
    "@types/ws": "^8.5.12",
    "date-fns": "^3.6.0",
    "safe-memory-cache": "^2.0.0",
    "undici": "^6.19.5",
    "ws": "^8.18.0"
  },
  "optionalDependencies": {
    "@rollup/rollup-linux-x64-gnu": "^4.20.0"
  },
  "tshy": {
    "exports": {
      "./package.json": "./package.json",
      ".": "./src/index.ts"
    }
  }
}
