{
  "name": "r-press",
  "version": "0.0.7",
  "description": "Vite SSG framework based on islands arch",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "bin": {
    "r-press": "bin/r-press.js"
  },
  "files": [
    "dist",
    "bin",
    "README.md",
    "src/runtime",
    "src/theme-default",
    "src/shared",
    "template.html",
    "vendors"
  ],
  "simple-git-hooks": {
    "pre-commit": "npx --no -- lint-staged",
    "commit-msg": "npx --no-install commitlint --edit \"$1\""
  },
  "lint-staged": {
    "**/*.{js,jsx,tsx,ts}": [
      "eslint --fix"
    ],
    "*.{md,json}": [
      "prettier --write --no-error-on-unmatched-pattern"
    ]
  },
  "author": "c0dedance",
  "keywords": [
    "vite",
    "ssg",
    "islands"
  ],
  "license": "MIT",
  "devDependencies": {
    "@commitlint/cli": "^17.7.2",
    "@commitlint/config-conventional": "^17.7.0",
    "@iconify-json/carbon": "^1.1.21",
    "@playwright/test": "^1.26.1",
    "@types/fs-extra": "^11.0.2",
    "@types/hast": "^2.3.4",
    "@types/lodash": "^4.14.200",
    "@types/markdown-it": "^13.0.7",
    "@types/mdast": "^3.0.10",
    "@types/node": "^20.8.4",
    "@types/react": "^18.2.31",
    "@types/resolve": "^1.20.4",
    "@typescript-eslint/eslint-plugin": "^6.7.5",
    "@typescript-eslint/parser": "^6.7.5",
    "chalk": "^5.3.0",
    "commitlint": "^17.7.2",
    "conventional-changelog-cli": "^4.1.0",
    "enquirer": "^2.4.1",
    "eslint": "^8.51.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-prettier": "^5.0.1",
    "eslint-plugin-react": "^7.33.2",
    "eslint-plugin-react-hooks": "^4.6.0",
    "execa": "5.1.1",
    "lint-staged": "^14.0.1",
    "minimist": "^1.2.8",
    "prettier": "^3.0.3",
    "sass": "^1.69.4",
    "semver": "^7.5.4",
    "simple-git-hooks": "^2.9.0",
    "tsup": "^7.2.0",
    "tsx": "^3.13.0",
    "typescript": "^5.2.2",
    "unist-util-visit": "^4.1.1",
    "vitest": "^0.34.6"
  },
  "dependencies": {
    "@babel/core": "^7.23.2",
    "@babel/helper-plugin-utils": "^7.22.5",
    "@babel/preset-react": "^7.22.15",
    "@babel/preset-typescript": "^7.23.2",
    "@babel/traverse": "^7.23.2",
    "@headlessui/react": "^1.7.17",
    "@mdx-js/rollup": "2.1.3",
    "@vitejs/plugin-react": "^2.2.0",
    "acorn": "^8.10.0",
    "axios": "^1.6.2",
    "cac": "^6.7.14",
    "compression": "^1.7.4",
    "esbuild": "^0.19.5",
    "fast-glob": "^3.3.1",
    "fs-extra": "^11.1.1",
    "github-slugger": "^2.0.0",
    "hast-util-from-html": "^2.0.1",
    "lodash-es": "^4.17.21",
    "markdown-it": "^14.0.0",
    "markdown-it-highlightjs": "^4.0.1",
    "mdast-util-mdxjs-esm": "^1.3.0",
    "ora": "^6.1.2",
    "polka": "^0.5.2",
    "r-press": "link:",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-helmet-async": "1.3.0",
    "react-router-dom": "6.4.3",
    "rehype-autolink-headings": "^7.0.0",
    "rehype-slug": "^6.0.0",
    "rehype-stringify": "^9.0.3",
    "remark-frontmatter": "^5.0.0",
    "remark-gfm": "^3.0.1",
    "remark-mdx": "^2.1.5",
    "remark-mdx-frontmatter": "^3.0.0",
    "remark-parse": "^10.0.1",
    "remark-rehype": "^11.0.0",
    "remark-stringify": "^10.0.2",
    "resolve": "^1.22.8",
    "rollup": "^4.0.2",
    "shiki": "^0.14.5",
    "sirv": "^2.0.3",
    "unified": "^10.1.2",
    "unocss": "^0.56.5",
    "vite": "^4.4.11"
  },
  "scripts": {
    "dev": "tsup --watch",
    "build": "tsup && pnpm build:prebundle",
    "build:prebundle": "tsx ./scripts/prebundle.ts",
    "lint": "eslint --fix --ext .ts,.tsx,.js,.jsx --quiet ./",
    "test:unit": "vitest run",
    "test:e2e": "playwright test",
    "prepare:e2e": "tsx scripts/prepare-e2e.ts",
    "release": "tsx ./scripts/release.ts",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "format:docs": "prettier --write \"docs/**/*.md\"",
    "dev:docs": "r-press dev docs",
    "build:docs": "r-press build docs",
    "preview": "r-press preview docs",
    "upload": "r-press upload docs"
  }
}