{
  "name": "@wsxjs/wsx-press",
  "version": "0.1.1",
  "description": "A VitePress-like documentation system built with WSXJS",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./client": {
      "import": "./dist/client.mjs",
      "require": "./dist/client.cjs"
    },
    "./node": {
      "import": "./dist/node.mjs",
      "require": "./dist/node.cjs"
    }
  },
  "files": [
    "dist",
    "src",
    "!**/__tests__",
    "!**/test"
  ],
  "dependencies": {
    "fuse.js": "^7.0.0",
    "marked": "^12.0.0",
    "@wsxjs/wsx-core": "0.1.1",
    "@wsxjs/wsx-logger": "0.1.1",
    "@wsxjs/wsx-marked-components": "0.1.1",
    "@wsxjs/wsx-router": "0.1.1"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^8.37.0",
    "@typescript-eslint/parser": "^8.37.0",
    "@vitest/coverage-v8": "^2.0.0",
    "eslint": "^9.31.0",
    "fs-extra": "^11.2.0",
    "glob": "^11.0.0",
    "memfs": "^4.0.0",
    "typedoc": "^0.26.0",
    "typedoc-plugin-markdown": "^4.0.0",
    "typescript": "^5.0.0",
    "vite": "^7.3.1",
    "vitest": "^2.0.0",
    "@wsxjs/wsx-vite-plugin": "0.1.1",
    "@wsxjs/eslint-plugin-wsx": "0.1.1"
  },
  "peerDependencies": {
    "typedoc": "^0.26.0",
    "typedoc-plugin-markdown": "^4.0.0"
  },
  "keywords": [
    "wsx",
    "web-components",
    "documentation",
    "docs",
    "markdown",
    "typedoc",
    "typescript",
    "vite"
  ],
  "author": "WSXJS Team",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/wsxjs/wsxjs.git",
    "directory": "packages/wsx-press"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "vite build",
    "build:dev": "NODE_ENV=development vite build",
    "dev": "NODE_ENV=development vite build --watch",
    "clean": "rm -rf dist",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "test": "vitest --run",
    "test:watch": "vitest",
    "test:coverage": "vitest --run --coverage"
  }
}