{
  "name": "@tanstack/db",
  "version": "0.6.4",
  "description": "A reactive client store for building super fast apps on sync",
  "author": "Kyle Mathews",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TanStack/db.git",
    "directory": "packages/db"
  },
  "homepage": "https://tanstack.com/db",
  "keywords": [
    "optimistic",
    "typescript",
    "tanstack-intent"
  ],
  "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",
    "skills"
  ],
  "dependencies": {
    "@standard-schema/spec": "^1.1.0",
    "@tanstack/pacer-lite": "^0.2.1",
    "@tanstack/db-ivm": "0.1.18"
  },
  "peerDependencies": {
    "typescript": ">=4.7"
  },
  "devDependencies": {
    "@tanstack/config": "^0.22.2",
    "@vitest/coverage-istanbul": "^3.2.4",
    "arktype": "^2.1.29",
    "mitt": "^3.0.1",
    "superjson": "^2.2.6",
    "temporal-polyfill": "^0.3.0"
  },
  "scripts": {
    "build": "vite build",
    "build:minified": "vite build --minify",
    "dev": "vite build --watch",
    "lint": "eslint . --fix",
    "test": "vitest --run"
  }
}