{
  "name": "@lightdash/query-sdk",
  "version": "2.2.0",
  "private": false,
  "type": "module",
  "description": "SDK for building custom data apps against the Lightdash semantic layer",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/lightdash/lightdash.git"
  },
  "sideEffects": false,
  "files": [
    "dist"
  ],
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./features": {
      "types": "./dist/features.d.ts",
      "import": "./dist/features.js"
    }
  },
  "peerDependencies": {
    "react": "^18.x || ^19.x"
  },
  "devDependencies": {
    "@types/node": "22.13.1",
    "@types/react": "19.2.2",
    "jsdom": "26.1.0",
    "typescript": "7.0.2",
    "vitest": "4.1.6",
    "@lightdash/common": "2.2.0"
  },
  "scripts": {
    "prebuild": "node ./scripts/generateSdkVersion.mjs",
    "build": "tsc --project tsconfig.build.json",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/",
    "pretest": "node ./scripts/generateSdkVersion.mjs",
    "test": "vitest run",
    "format": "oxfmt ./src --check",
    "fix-format": "oxfmt ./src",
    "release": "pnpm publish --no-git-checks --access public"
  }
}