{
  "name": "@peterbud/nuxt-query",
  "version": "1.9.0",
  "description": "Nuxt integration for Tanstack Query",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/peterbud/nuxt-query.git"
  },
  "author": "Peter Budai",
  "license": "MIT",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/types.d.mts",
      "import": "./dist/module.mjs"
    }
  },
  "keywords": [
    "vue",
    "nuxt",
    "query",
    "nuxt-module",
    "tanstack",
    "tanstack-query",
    "vue-query"
  ],
  "main": "./dist/module.mjs",
  "typesVersions": {
    "*": {
      ".": [
        "./dist/types.d.mts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@nuxt/devtools-kit": "^3.2.4",
    "@nuxt/devtools-ui-kit": "^3.2.4",
    "@nuxt/kit": "^4.4.7",
    "@tanstack/vue-query": "^5.101.0",
    "defu": "^6.1.7",
    "pkg-types": "^2.3.1",
    "sirv": "^3.0.2"
  },
  "devDependencies": {
    "@nuxt/devtools": "^3.2.4",
    "@nuxt/eslint-config": "^1.15.2",
    "@nuxt/module-builder": "1.0.2",
    "@nuxt/schema": "^4.4.7",
    "@nuxt/test-utils": "^4.0.3",
    "@types/node": "^25.9.1",
    "@unocss/nuxt": "66.7.3",
    "changelogen": "^0.6.2",
    "concurrently": "^10.0.3",
    "eslint": "^10.4.1",
    "nuxt": "^4.4.7",
    "typescript": "~6.0.3",
    "vitest": "^4.1.8",
    "vue-tsc": "^3.3.3"
  },
  "scripts": {
    "build": "nuxt-module-build prepare && nuxt-module-build build && pnpm build:client",
    "build:client": "nuxi generate client",
    "dev": "nuxi dev playground",
    "dev:client": "concurrently \"nuxi dev client --port 3300\" \"nuxi dev playground\"",
    "dev:build": "nuxi build playground",
    "dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
    "release": "pnpm lint && pnpm build && changelogen --release && npm publish && git push --follow-tags",
    "lint": "eslint .",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
  }
}