{
  "name": "vitepress",
  "version": "1.0.0-alpha.21",
  "description": "Vite & Vue powered static site generator",
  "type": "module",
  "packageManager": "pnpm@7.9.2",
  "main": "dist/node/index.js",
  "types": "types/index.d.ts",
  "exports": {
    ".": {
      "types": "./types/index.d.ts",
      "import": "./dist/node/index.js",
      "require": "./dist/node-cjs/index.cjs"
    },
    "./dist/*": "./dist/*",
    "./package.json": "./package.json",
    "./client": {
      "types": "./client.d.ts",
      "default": "./dist/client/index.js"
    },
    "./theme": {
      "types": "./theme.d.ts",
      "default": "./dist/client/theme-default/index.js"
    }
  },
  "bin": {
    "vitepress": "bin/vitepress.js"
  },
  "files": [
    "bin",
    "dist",
    "types",
    "client.d.ts",
    "theme.d.ts"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vuejs/vitepress.git"
  },
  "keywords": [
    "vite",
    "vue",
    "vitepress"
  ],
  "author": "Evan You",
  "license": "MIT",
  "homepage": "https://github.com/vuejs/vitepress/tree/main/#readme",
  "bugs": {
    "url": "https://github.com/vuejs/vitepress/issues"
  },
  "scripts": {
    "dev": "rimraf dist && run-s dev-shared dev-start",
    "dev-start": "run-p dev-client dev-node dev-watch",
    "dev-client": "tsc -w -p src/client",
    "dev-node": "DEV=true pnpm run build-node -w",
    "dev-shared": "node scripts/copyShared",
    "dev-watch": "node scripts/watchAndCopy",
    "build": "run-s build-prepare build-client build-node",
    "build-prepare": "rimraf dist && node scripts/copyShared",
    "build-client": "vue-tsc --noEmit -p src/client && tsc -p src/client && node scripts/copyClient",
    "build-node": "tsc -p src/node --noEmit && rollup --config rollup.config.ts --configPlugin esbuild",
    "format": "prettier --check --write .",
    "format-fail": "prettier --check .",
    "lint": "pnpm run format",
    "lint-fail": "pnpm run format-fail",
    "test": "vitest -r __tests__",
    "test-unit": "vitest run -r __tests__",
    "test-serve": "vitest run -c vitest.config.e2e.ts",
    "test-build": "VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
    "debug-serve": "VITE_DEBUG_SERVE=1 vitest run -c vitest.config.e2e.ts",
    "debug-build": "VITE_TEST_BUILD=1 VITE_PRESERVE_BUILD_ARTIFACTS=1 vitest run -c vitest.config.e2e.ts",
    "check": "run-s lint test-run docs-build",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "release": "node scripts/release.js",
    "docs": "run-p dev docs-dev",
    "docs-dev": "wait-on -d 1000 dist/node/cli.js && node ./bin/vitepress dev docs",
    "docs-debug": "node --inspect-brk ./bin/vitepress dev docs",
    "docs-build": "run-s build docs-build-only",
    "docs-build-only": "node ./bin/vitepress build docs",
    "docs-serve": "node ./bin/vitepress serve docs",
    "ci-docs": "run-s docs-build"
  },
  "dependencies": {
    "@docsearch/css": "^3.2.1",
    "@docsearch/js": "^3.2.1",
    "@vitejs/plugin-vue": "^3.1.2",
    "@vue/devtools-api": "^6.4.4",
    "@vueuse/core": "^9.3.0",
    "body-scroll-lock": "4.0.0-beta.0",
    "shiki": "^0.11.1",
    "vite": "^3.1.6",
    "vue": "^3.2.40"
  },
  "devDependencies": {
    "@mdit-vue/plugin-component": "^0.11.1",
    "@mdit-vue/plugin-frontmatter": "^0.11.1",
    "@mdit-vue/plugin-headers": "^0.11.1",
    "@mdit-vue/plugin-sfc": "^0.11.1",
    "@mdit-vue/plugin-title": "^0.11.1",
    "@mdit-vue/plugin-toc": "^0.11.1",
    "@mdit-vue/shared": "^0.11.0",
    "@rollup/plugin-alias": "^4.0.0",
    "@rollup/plugin-commonjs": "^22.0.2",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^14.1.0",
    "@rollup/plugin-replace": "^4.0.0",
    "@types/body-scroll-lock": "^3.1.0",
    "@types/compression": "^1.7.2",
    "@types/cross-spawn": "^6.0.2",
    "@types/debug": "^4.1.7",
    "@types/diacritics": "^1.3.1",
    "@types/escape-html": "^1.0.2",
    "@types/fs-extra": "^9.0.13",
    "@types/koa": "^2.13.5",
    "@types/koa-static": "^4.0.2",
    "@types/markdown-it": "^12.2.3",
    "@types/markdown-it-attrs": "^4.1.0",
    "@types/markdown-it-container": "^2.0.5",
    "@types/markdown-it-emoji": "^2.0.2",
    "@types/micromatch": "^4.0.2",
    "@types/minimist": "^1.2.2",
    "@types/node": "^18.8.3",
    "@types/prompts": "^2.4.1",
    "chokidar": "^3.5.3",
    "compression": "^1.7.4",
    "conventional-changelog-cli": "^2.2.2",
    "cross-spawn": "^7.0.3",
    "debug": "^4.3.4",
    "diacritics": "^1.3.0",
    "enquirer": "^2.3.6",
    "esbuild": "^0.15.10",
    "escape-html": "^1.0.3",
    "execa": "^6.1.0",
    "fast-glob": "^3.2.12",
    "fs-extra": "^10.1.0",
    "lint-staged": "^13.0.3",
    "lru-cache": "^7.14.0",
    "markdown-it": "^13.0.1",
    "markdown-it-anchor": "^8.6.5",
    "markdown-it-attrs": "^4.1.4",
    "markdown-it-container": "^3.0.0",
    "markdown-it-emoji": "^2.0.2",
    "micromatch": "^4.0.5",
    "minimist": "^1.2.6",
    "npm-run-all": "^4.1.5",
    "ora": "^5.4.1",
    "picocolors": "^1.0.0",
    "pkg-dir": "^5.0.0",
    "playwright-chromium": "^1.27.0",
    "polka": "1.0.0-next.22",
    "prettier": "^2.7.1",
    "prompts": "^2.4.2",
    "punycode": "^2.1.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.79.1",
    "rollup-plugin-dts": "^4.2.2",
    "rollup-plugin-esbuild": "^4.10.1",
    "semver": "^7.3.8",
    "simple-git-hooks": "^2.8.0",
    "sirv": "^2.0.2",
    "supports-color": "^9.2.3",
    "typescript": "~4.8.4",
    "vitest": "^0.24.0",
    "vue-tsc": "^1.0.0",
    "wait-on": "^6.0.1"
  },
  "pnpm": {
    "peerDependencyRules": {
      "ignoreMissing": [
        "@algolia/client-search"
      ]
    }
  },
  "simple-git-hooks": {
    "pre-commit": "pnpm lint-staged"
  },
  "lint-staged": {
    "*": [
      "prettier --write --ignore-unknown"
    ]
  }
}