{
  "name": "@vue/apollo-composable",
  "version": "4.2.2",
  "description": "Apollo GraphQL for Vue Composition API",
  "author": "Guillaume Chau <guillaume.b.chau@gmail.com>",
  "license": "MIT",
  "homepage": "https://apollo.vuejs.org/",
  "repository": {
    "type": "git",
    "url": "https://github.com/vuejs/vue-apollo.git",
    "directory": "packages/vue-apollo-composable"
  },
  "bugs": {
    "url": "https://github.com/vuejs/vue-apollo/issues"
  },
  "keywords": [
    "vue",
    "apollo",
    "graphql",
    "composition"
  ],
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    },
    "./*": "./*"
  },
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "peerDependencies": {
    "@apollo/client": "^3.4.13",
    "@vue/composition-api": "^1.0.0",
    "graphql": ">=15",
    "vue": "^2.6.0 || ^3.1.0"
  },
  "peerDependenciesMeta": {
    "@vue/composition-api": {
      "optional": true
    }
  },
  "dependencies": {
    "throttle-debounce": "^5.0.0",
    "ts-essentials": "^9.4.0",
    "vue-demi": "^0.14.6"
  },
  "devDependencies": {
    "@apollo/client": "^3.7.16",
    "@types/throttle-debounce": "^5.0.0",
    "graphql": "^16.7.1",
    "graphql-tag": "^2.12.6",
    "nodemon": "^1.19.4",
    "rimraf": "^5.0.1",
    "typescript": "^4.9.5",
    "vue": "^3.3.4"
  },
  "scripts": {
    "dev": "rimraf dist && nodemon --exec 'pnpm run build:code' --watch src --ext js,ts",
    "build": "rimraf dist && pnpm run build:code",
    "build:code": "node esbuild.mjs && tsc -d --emitDeclarationOnly",
    "test": "pnpm run test:types",
    "test:types": "tsc -p tests/types/"
  }
}