gitextract_w42u4ncg/ ├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── LICENSE ├── README.md ├── examples/ │ └── single-file-sync/ │ ├── .eslintrc.js │ ├── .gitignore │ ├── README.md │ ├── components/ │ │ ├── Editor/ │ │ │ ├── Editor.module.css │ │ │ ├── GitHub.tsx │ │ │ ├── index.tsx │ │ │ ├── options.ts │ │ │ └── theme.ts │ │ ├── Footer/ │ │ │ ├── Footer.module.css │ │ │ └── index.tsx │ │ ├── Head/ │ │ │ └── index.tsx │ │ ├── Header/ │ │ │ ├── Header.module.css │ │ │ └── index.tsx │ │ └── Navbar/ │ │ ├── Navbar.module.css │ │ └── index.tsx │ ├── lib/ │ │ ├── constants.ts │ │ ├── use-interval.ts │ │ ├── y-config.ts │ │ └── y-monaco.ts │ ├── next-env.d.ts │ ├── next.config.js │ ├── package.json │ ├── pages/ │ │ ├── _app.js │ │ └── index.tsx │ ├── styles/ │ │ ├── Shared.module.css │ │ ├── globals.css │ │ └── yjs.css │ ├── tsconfig.json │ └── types.d.ts ├── package.json ├── src/ │ ├── cache.ts │ ├── constants.ts │ ├── helpers.ts │ ├── index.ts │ └── yjs.ts └── tsconfig.json