gitextract_xl89wua4/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── release.yml │ └── test.yml ├── .gitignore ├── .vscode/ │ └── settings.json ├── LICENSE ├── README.md ├── eslint.config.js ├── examples/ │ ├── vite/ │ │ ├── App.vue │ │ ├── Counter.vue │ │ ├── Counter2.vue │ │ ├── README.md │ │ ├── index.html │ │ ├── main.ts │ │ ├── package.json │ │ ├── pages/ │ │ │ ├── index.md │ │ │ └── route.vue │ │ ├── vite.config.ts │ │ └── vue-shim.d.ts │ └── vue-cli/ │ ├── babel.config.js │ ├── jsconfig.json │ ├── package.json │ ├── public/ │ │ └── index.html │ ├── src/ │ │ ├── App.vue │ │ ├── Hi.md │ │ └── main.js │ └── vue.config.js ├── package.json ├── pnpm-workspace.yaml ├── scripts/ │ └── postbuild.ts ├── src/ │ ├── core/ │ │ ├── head.ts │ │ ├── markdown.ts │ │ ├── options.ts │ │ └── utils.ts │ ├── esbuild.ts │ ├── index.ts │ ├── rollup.ts │ ├── rspack.ts │ ├── types.ts │ ├── vite.ts │ └── webpack.ts ├── test/ │ ├── __snapshots__/ │ │ ├── excerpt.test.ts.snap │ │ └── transform.test.ts.snap │ ├── excerpt.test.ts │ ├── fixtures/ │ │ └── simple.md │ ├── frontmatterPreprocessor.test.ts │ └── transform.test.ts ├── tsconfig.json └── tsup.config.ts