{
  "name": "beaver-ssg",
  "version": "0.1.4",
  "description": "a modern SSG tool to generate static sites with MarkDown",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "type": "module",
  "types": "dist/index.d.ts",
  "keywords": [
    "ssg",
    "vite",
    "react-ssr"
  ],
  "author": "albert26193",
  "license": "MIT",
  "file": [
    "dist",
    "bin",
    "README.md",
    "src/render",
    "src/theme",
    "src/types"
  ],
  "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": "^3.0.1",
    "@types/lodash": "^4.14.200",
    "@types/mdast": "^3.0.10",
    "@types/node": "^20.6.5",
    "@types/react": "^18.2.28",
    "@types/react-dom": "^18.2.13",
    "@typescript-eslint/eslint-plugin": "^6.7.5",
    "@typescript-eslint/parser": "^6.7.5",
    "@vitest/ui": "^0.34.6",
    "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": "8.0.1",
    "husky": "^8.0.3",
    "lint-staged": "^14.0.1",
    "mdast-util-mdxjs-esm": "^2.0.1",
    "minimist": "^1.2.8",
    "prettier": "^3.0.3",
    "remark-mdx": "^2.3.0",
    "remark-parse": "^11.0.0",
    "remark-rehype": "^11.0.0",
    "remark-stringify": "^11.0.0",
    "rollup": "^3.29.4",
    "sass": "^1.69.5",
    "semver": "^7.6.0",
    "serve": "^14.2.1",
    "tsup": "^7.2.0",
    "tsx": "^3.13.0",
    "typescript": "^5.2.2",
    "unified": "^11.0.3",
    "unist-util-visit": "^5.0.0",
    "vitest": "^0.34.6"
  },
  "dependencies": {
    "@loadable/component": "^5.15.3",
    "@mdx-js/rollup": "2.1.3",
    "@vitejs/plugin-react": "^4.1.0",
    "acorn": "^8.10.0",
    "cac": "^6.7.14",
    "classnames": "^2.5.1",
    "compression": "^1.7.4",
    "copy-to-clipboard": "^3.3.3",
    "esbuild": "^0.20.1",
    "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",
    "ora": "^7.0.1",
    "polka": "^0.5.2",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "react-helmet-async": "^2.0.4",
    "react-router-dom": "^6.16.0",
    "rehype-autolink-headings": "^7.0.0",
    "rehype-slug": "^6.0.0",
    "rehype-stringify": "^10.0.0",
    "remark-frontmatter": "^5.0.0",
    "remark-gfm": "^3.0.1",
    "remark-mdx-frontmatter": "^3.0.0",
    "shiki": "^0.14.5",
    "sirv": "^2.0.3",
    "unocss": "^0.57.1",
    "vite": "^4.4.9"
  },
  "lint-staged": {
    "**/*.{js,jsx,tsx,ts}": [
      "eslint --fix"
    ]
  },
  "bin": {
    "beaver": "bin/beaver.js"
  },
  "scripts": {
    "dev": "tsup --watch",
    "build": "tsup",
    "lint": "eslint --fix --ext .ts,.tsx,.js,.jsx ./",
    "prepare:e2e": "tsx scripts/prepare-e2e.cts",
    "test:init": "vitest --ui",
    "test:unit": "vitest run",
    "test:e2e": "playwright test",
    "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "release": "tsx ./scripts/release.ts"
  }
}