{
  "name": "@nhost/vue",
  "version": "2.9.8",
  "description": "Nhost Vue library",
  "license": "MIT",
  "keywords": [
    "nhost",
    "hasura",
    "storage",
    "auth",
    "authentication",
    "graphql",
    "postgresql",
    "realtime",
    "vue"
  ],
  "author": "Nhost",
  "homepage": "https://nhost.io",
  "bugs": "https://github.com/nhost/nhost/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/nhost/nhost.git"
  },
  "main": "dist/index.cjs.js",
  "module": "dist/index.esm.js",
  "types": "dist/index.d.ts",
  "source": "src/index.ts",
  "files": [
    "dist",
    "umd",
    "README.md"
  ],
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "node": "./dist/index.cjs.js",
        "default": "./dist/index.esm.js"
      },
      "require": "./dist/index.cjs.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "peerDependencies": {
    "vue": "^3.2.31"
  },
  "dependencies": {
    "@vueuse/core": "^10.9.0",
    "@xstate/vue": "^2.0.0",
    "jwt-decode": "^4.0.0",
    "@nhost/nhost-js": "3.3.1"
  },
  "devDependencies": {
    "@vitejs/plugin-vue": "^4.6.2",
    "@xstate/inspect": "^0.8.0",
    "vue": "^3.4.21",
    "vue-router": "^4.3.0",
    "ws": "^8.16.0",
    "xstate": "^4.38.3",
    "@nhost/docgen": "0.3.0"
  },
  "scripts": {
    "dev": "vite build --config ../../config/vite.vue.dev.config.js",
    "build": "run-p build:lib build:umd",
    "build:lib": "vite build --config ../../config/vite.vue.config.js",
    "build:umd": "vite build --config ../../config/vite.vue.umd.config.js",
    "test": "vitest run --config ../../config/vite.vue.config.js",
    "test:watch": "vitest --config ../../config/vite.vue.config.js",
    "test:coverage": "vitest run --coverage --config ../../config/vite.lib.config.js",
    "prettier": "prettier --check src/",
    "prettier:fix": "prettier --write src/",
    "lint": "eslint . --ext .ts,.vue",
    "lint:fix": "eslint . --ext .ts,.vue --fix",
    "verify": "run-p prettier lint",
    "verify:fix": "run-p prettier:fix lint:fix",
    "typedoc": "typedoc --options ./vue.typedoc.json --tsconfig ./typedoc.tsconfig.json",
    "docgen": "pnpm typedoc && docgen --config ./vue.docgen.json"
  }
}