{
  "name": "@tanstack/vue-query",
  "version": "5.14.4",
  "description": "Hooks for managing, caching and syncing asynchronous and remote data in Vue",
  "author": "Damian Osipiuk",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/TanStack/query.git",
    "directory": "packages/vue-query"
  },
  "homepage": "https://tanstack.com/query",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/tannerlinsley"
  },
  "type": "module",
  "types": "build/legacy/index.d.ts",
  "main": "build/legacy/index.cjs",
  "module": "build/legacy/index.js",
  "exports": {
    ".": {
      "import": {
        "types": "./build/modern/index.d.ts",
        "default": "./build/modern/index.js"
      },
      "require": {
        "types": "./build/modern/index.d.cts",
        "default": "./build/modern/index.cjs"
      }
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "nx": {
    "targets": {
      "test:lib": {
        "dependsOn": [
          "test:types"
        ]
      }
    }
  },
  "files": [
    "build",
    "src"
  ],
  "dependencies": {
    "@tanstack/match-sorter-utils": "^8.8.4",
    "@vue/devtools-api": "^6.5.0",
    "vue-demi": "^0.14.6",
    "@tanstack/query-core": "5.14.2"
  },
  "devDependencies": {
    "@vue/composition-api": "1.7.2",
    "vue": "^3.3.0",
    "vue2": "npm:vue@2.6",
    "vue2.7": "npm:vue@2.7"
  },
  "peerDependencies": {
    "@vue/composition-api": "^1.1.2",
    "vue": "^2.6.0 || ^3.3.0"
  },
  "peerDependenciesMeta": {
    "@vue/composition-api": {
      "optional": true
    }
  },
  "scripts": {
    "clean": "rimraf ./build && rimraf ./coverage",
    "test:eslint": "eslint --ext .ts,.tsx ./src",
    "test:types": "tsc",
    "test:lib": "pnpm run test:2 && pnpm run test:2.7 && pnpm run test:3",
    "test:2": "vue-demi-switch 2 vue2 && vitest",
    "test:2.7": "vue-demi-switch 2.7 vue2.7 && vitest",
    "test:3": "vue-demi-switch 3 && vitest",
    "test:lib:dev": "pnpm run test:lib --watch",
    "test:build": "publint --strict",
    "build": "tsup"
  }
}