gitextract_ynp_uc9x/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CODEOWNERS │ ├── copilot-instructions.md │ └── workflows/ │ └── build-docs.yml ├── .gitignore ├── .nvmrc ├── .oxlintrc.json ├── .prettierignore ├── .prettierrc.yaml ├── AGENT.md ├── CHANGELOG.md ├── LICENSE ├── README.ja.md ├── README.md ├── SSR_FIX_SUMMARY.md ├── TESTING.md ├── env.d.ts ├── eslint.config.ts ├── index.html ├── package.json ├── pnpm-workspace.yaml ├── scripts/ │ └── sync-dts-entry.mjs ├── src/ │ ├── __tests__/ │ │ ├── CodeMirror.spec.ts │ │ └── CodeMirror.ssr.spec.ts │ ├── helpers/ │ │ └── h-demi.ts │ ├── index.ts │ └── interfaces/ │ └── MetaInterface.ts ├── src-docs/ │ ├── App.vue │ ├── DemoPage.vue │ ├── components/ │ │ ├── KeyMapDemo.vue │ │ ├── LinterAndCrossBindingDemo.vue │ │ ├── MarkdownDemo.vue │ │ ├── ReadonlyAndDisabledDemo.vue │ │ ├── SlotDemo.vue │ │ └── ToggleTheme.vue │ ├── main.ts │ └── style.scss ├── tsconfig.app.json ├── tsconfig.docs.json ├── tsconfig.json ├── tsconfig.node.json ├── tsconfig.vitest.json ├── vite.config.ts └── vitest.config.ts