{
  "name": "@tanstack/query-db-collection",
  "version": "1.0.40",
  "description": "TanStack Query collection for TanStack DB",
  "author": "Kyle Mathews",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/db.git",
    "directory": "packages/query-db-collection"
  },
  "homepage": "https://tanstack.com/db",
  "keywords": [
    "query",
    "tanstack",
    "optimistic",
    "typescript"
  ],
  "type": "module",
  "main": "dist/cjs/index.cjs",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/index.d.cts",
        "default": "./dist/cjs/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "files": [
    "dist",
    "src"
  ],
  "dependencies": {
    "@standard-schema/spec": "^1.1.0",
    "@tanstack/db": "0.6.8"
  },
  "peerDependencies": {
    "@tanstack/query-core": "^5.0.0",
    "typescript": ">=4.7"
  },
  "devDependencies": {
    "@tanstack/query-core": "^5.90.20",
    "@vitest/coverage-istanbul": "^3.2.4",
    "@tanstack/offline-transactions": "1.0.33"
  },
  "scripts": {
    "build": "vite build",
    "dev": "vite build --watch",
    "lint": "eslint . --fix",
    "test": "vitest run",
    "test:e2e": "vitest run --config vitest.e2e.config.ts"
  }
}