{
  "name": "@queryleaf/lib",
  "version": "0.2.3",
  "description": "SQL to MongoDB query translator - Core library",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "clean": "rm -rf dist",
    "build": "yarn clean && tsc",
    "typecheck": "npx tsc --noEmit",
    "dev": "ts-node src/index.ts",
    "example": "ts-node src/examples/basic-usage.ts",
    "test": "yarn test:unit && yarn test:integration",
    "test:unit": "jest tests/unit",
    "test:integration": "jest tests/integration --runInBand",
    "lint": "eslint --ext .ts src",
    "lint:fix": "eslint --ext .ts --fix src",
    "lockversion": "echo \"Skipping for lib\""
  },
  "keywords": [
    "sql",
    "mongodb",
    "compiler",
    "query"
  ],
  "author": "",
  "license": "AGPL-3.0",
  "dependencies": {
    "debug": "^4.4.0",
    "node-sql-parser": "^4.11.0"
  },
  "peerDependencies": {
    "mongodb": "^6.14.2"
  },
  "devDependencies": {
    "@types/debug": "^4.1.12",
    "@types/jest": "^29.5.14",
    "@types/mongodb": "^4.0.7",
    "jest": "^29.7.0",
    "mongodb": "^6.14.2",
    "testcontainers": "^10.20.0",
    "ts-jest": "^29.2.6",
    "ts-node": "^10.9.2"
  },
  "publishConfig": {
    "access": "public"
  }
}
