{
  "name": "@vuepress/client",
  "version": "2.0.0-rc.2",
  "description": "Client package of VuePress",
  "keywords": [
    "vuepress",
    "client"
  ],
  "homepage": "https://github.com/vuepress",
  "bugs": {
    "url": "https://github.com/vuepress/core/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vuepress/core.git"
  },
  "license": "MIT",
  "author": "meteorlxy",
  "type": "module",
  "exports": {
    ".": "./dist/index.js",
    "./app": "./dist/app.js",
    "./package.json": "./package.json",
    "./templates/*": "./templates/*",
    "./types": "./types.d.ts"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "templates",
    "types.d.ts"
  ],
  "dependencies": {
    "@vue/devtools-api": "^6.5.1",
    "@vueuse/core": "^10.7.2",
    "vue": "^3.4.15",
    "vue-router": "^4.2.5",
    "@vuepress/shared": "2.0.0-rc.2"
  },
  "publishConfig": {
    "access": "public"
  },
  "tsup": {
    "clean": true,
    "dts": [
      "./src/app.ts",
      "./src/index.ts"
    ],
    "entry": [
      "./src/app.ts",
      "./src/index.ts"
    ],
    "external": [
      "@internal/clientConfigs",
      "@internal/layoutComponents",
      "@internal/pagesComponents",
      "@internal/pagesData",
      "@internal/pagesRoutes",
      "@internal/siteData"
    ],
    "format": [
      "esm"
    ],
    "outDir": "./dist",
    "sourcemap": false,
    "target": "es2022",
    "tsconfig": "./tsconfig.dts.json"
  },
  "scripts": {
    "build": "tsup",
    "clean": "rimraf dist"
  }
}