{
  "name": "vite-plugin-vue-server-ref",
  "type": "module",
  "version": "1.0.0",
  "description": "Share state between clients and Vite server",
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/antfu",
  "homepage": "https://github.com/antfu/vite-plugin-vue-server-ref#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/antfu/vite-plugin-vue-server-ref.git"
  },
  "bugs": {
    "url": "https://github.com/antfu/vite-plugin-vue-server-ref/issues"
  },
  "keywords": [
    "vite-plugin"
  ],
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs",
    "./client": "./dist/client.mjs"
  },
  "main": "dist/index.mjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "files": [
    "*.d.ts",
    "dist"
  ],
  "peerDependencies": {
    "vite": ">=2.0.0",
    "vue": "^3.0.0"
  },
  "dependencies": {
    "debug": "^4.4.0",
    "klona": "^2.0.6",
    "mlly": "^1.7.4",
    "ufo": "^1.5.4"
  },
  "devDependencies": {
    "@antfu/eslint-config": "^4.3.0",
    "@antfu/ni": "^23.3.1",
    "@antfu/utils": "^9.1.0",
    "@types/debug": "^4.1.12",
    "@types/node": "^22.13.4",
    "bumpp": "^10.0.3",
    "eslint": "^9.20.1",
    "typescript": "^5.7.3",
    "unbuild": "^3.3.1",
    "vite": "^6.1.0",
    "vitest": "^3.0.5",
    "vue": "^3.5.13"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "unbuild --stub",
    "demo": "pnpm -C example run dev",
    "release": "bumpp && pnpm publish",
    "lint": "eslint .",
    "test": "vitest"
  }
}