{
  "name": "@unhead/vue",
  "type": "module",
  "version": "2.1.12",
  "description": "Full-stack <head> manager built for Vue.",
  "author": "Harlan Wilton <harlan@harlanzw.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/harlan-zw",
  "homepage": "https://unhead.unjs.io",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/unjs/unhead.git",
    "directory": "packages/vue"
  },
  "publishConfig": {
    "access": "public",
    "tag": "next"
  },
  "bugs": {
    "url": "https://github.com/unjs/unhead/issues"
  },
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.mjs"
    },
    "./components": {
      "types": "./dist/components.d.ts",
      "default": "./dist/components.mjs"
    },
    "./server": {
      "types": "./dist/server.d.ts",
      "default": "./dist/server.mjs"
    },
    "./client": {
      "types": "./dist/client.d.ts",
      "default": "./dist/client.mjs"
    },
    "./types": {
      "types": "./dist/types.d.ts",
      "default": "./dist/types.mjs"
    },
    "./legacy": {
      "types": "./dist/legacy.d.ts",
      "default": "./dist/legacy.mjs"
    },
    "./plugins": {
      "types": "./dist/plugins.d.ts",
      "default": "./dist/plugins.mjs"
    },
    "./utils": {
      "types": "./dist/utils.d.ts",
      "default": "./dist/utils.mjs"
    },
    "./scripts": {
      "types": "./dist/scripts.d.ts",
      "default": "./dist/scripts.mjs"
    }
  },
  "main": "dist/index.mjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "typesVersions": {
    "*": {
      "components": [
        "dist/components"
      ],
      "server": [
        "dist/server"
      ],
      "client": [
        "dist/client"
      ],
      "types": [
        "dist/types"
      ],
      "legacy": [
        "dist/legacy"
      ],
      "plugins": [
        "dist/plugins"
      ],
      "utils": [
        "dist/utils"
      ],
      "scripts": [
        "dist/scripts"
      ]
    }
  },
  "files": [
    "*.d.ts",
    "dist"
  ],
  "peerDependencies": {
    "vue": ">=3.5.18"
  },
  "build": {
    "external": [
      "vue"
    ]
  },
  "dependencies": {
    "hookable": "^6.0.1",
    "unhead": "2.1.12"
  },
  "devDependencies": {
    "@vue/server-renderer": "^3.5.29",
    "vue": "^3.5.29"
  },
  "scripts": {
    "build": "unbuild",
    "stub": "unbuild --stub",
    "test:attw": "attw --pack"
  }
}