├── .changeset
├── byok-machine-translate.md
├── config.json
├── fix-cli-create-require.md
├── incremental-lix-sync.md
├── sherlock-logging-output.md
├── sherlock-observe-message-view.md
└── split-read-file-tool.md
├── .gitattributes
├── .github
├── DISCUSSION_TEMPLATE
│ └── Feature Request.yml
├── ISSUE_TEMPLATE
│ └── config.yml
└── workflows
│ ├── bench-lix-sdk.yml
│ ├── cla.yml
│ ├── continuous-integration.yml
│ ├── lix-sdk-readme-sync.yml
│ ├── mirror-flashtype.yml
│ ├── mirror-inlang-sdk.yml
│ ├── mirror-lix-sdk.yml
│ ├── mirror-paraglide.yml
│ ├── publish-ide-extension.yml
│ ├── publish-npm-packages.yml
│ └── versioning.yml
├── .gitignore
├── .prettierignore
├── .vscode
├── extensions.json
├── launch.json
└── settings.json
├── AGENTS.md
├── CONTRIBUTING.md
├── LICENSE
├── README.md
├── bin
└── doppler
├── careers
├── README.md
└── archive
│ ├── inlang-sdk.md
│ ├── lead-for-i18n-library.md
│ └── senior-engineer-for-lix.md
├── cla-signatures.json
├── cla.md
├── inlang
├── README.md
├── assets
│ ├── cli-validate.png
│ ├── fork-project.webp
│ ├── graphs.md
│ ├── ide-extension
│ │ ├── extract.gif
│ │ ├── inline.gif
│ │ ├── lint.gif
│ │ ├── tooltip.gif
│ │ └── update.gif
│ ├── inlang-pipeline.png
│ ├── inlang-problem-explainer.png
│ ├── logo-white-background.png
│ ├── logo_rounded.png
│ ├── marketplace
│ │ ├── camel_case_id-cover.jpg
│ │ ├── cli-gallery
│ │ │ ├── cli-gallery-image-1.jpg
│ │ │ ├── cli-gallery-image-2.jpg
│ │ │ └── cli-gallery-image-3.jpg
│ │ ├── cli-marketplace-cover.jpg
│ │ ├── editor-guide-image.jpg
│ │ ├── editor-marketplace-cover.jpg
│ │ ├── empty_pattern-marketplace-cover.jpg
│ │ ├── figma-install-badge.svg
│ │ ├── identical_pattern-marketplace-cover.jpg
│ │ ├── inlang-install-badge.svg
│ │ ├── missing_translation-marketplace-cover.jpg
│ │ ├── paraglide-artwork.gif
│ │ ├── paraglide-gallery
│ │ │ ├── paraglide-gallery-image-1.jpg
│ │ │ ├── paraglide-gallery-image-2.jpg
│ │ │ ├── paraglide-gallery-image-3.jpg
│ │ │ └── paraglide-gallery-image-4.jpg
│ │ ├── paraglide-marketplace-cover.jpg
│ │ ├── snake_case_id-cover.jpg
│ │ ├── valid_js_identifier_id.jpg
│ │ └── without_source-marketplace-cover.jpg
│ ├── md-badges
│ │ ├── fink-action-button.svg
│ │ └── inlang.svg
│ ├── styleguide-mockup.svg
│ └── what-is-inlang.png
├── blog
│ ├── git-as-sdk.md
│ ├── inlang-refactor.md
│ ├── notes-on-git-based-architecture.md
│ ├── tableOfContents.json
│ └── the-next-git.md
├── external-projects
│ └── remix-paraglidejs
│ │ ├── assets
│ │ └── remix.svg
│ │ └── marketplace-manifest.json
├── packages
│ ├── README.md
│ ├── cli
│ │ ├── .gitignore
│ │ ├── .npmrc
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── assets
│ │ │ ├── automation.jpg
│ │ │ ├── cli-header.jpg
│ │ │ ├── cli-header.png
│ │ │ ├── cli-icon.png
│ │ │ ├── lint.jpg
│ │ │ ├── machine-translation.jpg
│ │ │ └── why.jpg
│ │ ├── bin
│ │ │ └── run.js
│ │ ├── build.js
│ │ ├── example
│ │ │ ├── messages
│ │ │ │ ├── de.json
│ │ │ │ ├── en-US.json
│ │ │ │ └── en.json
│ │ │ ├── package.json
│ │ │ └── project.inlang
│ │ │ │ ├── .gitignore
│ │ │ │ ├── project_id
│ │ │ │ └── settings.json
│ │ ├── marketplace-manifest.json
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── commands
│ │ │ │ ├── lint
│ │ │ │ │ └── index.ts
│ │ │ │ ├── machine
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── machineTranslateBundle.ts
│ │ │ │ │ ├── translate.test.ts
│ │ │ │ │ └── translate.ts
│ │ │ │ ├── plugin
│ │ │ │ │ ├── build
│ │ │ │ │ │ ├── command.ts
│ │ │ │ │ │ └── moduleBuildOptions.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── validate
│ │ │ │ │ └── index.ts
│ │ │ ├── env-variables
│ │ │ │ └── index.ts
│ │ │ ├── main.ts
│ │ │ ├── services
│ │ │ │ └── error-monitoring
│ │ │ │ │ ├── implementation.ts
│ │ │ │ │ └── index.ts
│ │ │ ├── telemetry
│ │ │ │ └── capture.ts
│ │ │ └── utilities
│ │ │ │ ├── format.test.ts
│ │ │ │ ├── format.ts
│ │ │ │ ├── getFlag.ts
│ │ │ │ ├── getInlangProject.ts
│ │ │ │ ├── globalFlags.ts
│ │ │ │ └── log.ts
│ │ ├── tsconfig.json
│ │ └── vitest.config.ts
│ ├── fink
│ │ ├── .eslintrc.cjs
│ │ ├── .gitignore
│ │ ├── .prettierrc
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── assets
│ │ │ ├── cover.jpg
│ │ │ ├── editor01.png
│ │ │ ├── editor02.png
│ │ │ ├── editor03.png
│ │ │ ├── fink-image.png
│ │ │ ├── gallery-image-1.jpg
│ │ │ ├── gallery-image-2.jpg
│ │ │ ├── gallery-image-3.jpg
│ │ │ ├── gallery-image-4.jpg
│ │ │ └── icon.png
│ │ ├── demo
│ │ │ ├── bundles.ts
│ │ │ └── importedResources
│ │ │ │ ├── de.json
│ │ │ │ └── en.json
│ │ ├── docs
│ │ │ └── supported-i18n-libraries.md
│ │ ├── index.html
│ │ ├── marketplace-manifest.json
│ │ ├── package.json
│ │ ├── public
│ │ │ ├── empty-project-image.png
│ │ │ ├── setAuthor.png
│ │ │ └── 🐦.png
│ │ ├── scripts
│ │ │ └── generateDemoData.js
│ │ ├── src
│ │ │ ├── components
│ │ │ │ ├── DiffBundleView.tsx
│ │ │ │ ├── Dropzone.tsx
│ │ │ │ ├── FilterSection.tsx
│ │ │ │ ├── Footer.tsx
│ │ │ │ ├── HistoryEntry.tsx
│ │ │ │ ├── InlangBundle.tsx
│ │ │ │ ├── InlangSettings.tsx
│ │ │ │ ├── LixFloat.tsx
│ │ │ │ ├── NoProjectView.tsx
│ │ │ │ ├── SingleDiffBundle.tsx
│ │ │ │ ├── SubNavigation.tsx
│ │ │ │ ├── TableHeader.tsx
│ │ │ │ ├── VariantHistory.tsx
│ │ │ │ ├── VariantHistoryList.tsx
│ │ │ │ └── layout
│ │ │ │ │ ├── CreateProjectDialog.tsx
│ │ │ │ │ ├── HelpMenu.tsx
│ │ │ │ │ ├── ImportLocaleDialog.tsx
│ │ │ │ │ ├── MenuBar.tsx
│ │ │ │ │ ├── ProjectMenu.tsx
│ │ │ │ │ ├── SelectProject.tsx
│ │ │ │ │ └── UserAuthDialog.tsx
│ │ │ ├── helper
│ │ │ │ ├── deleteBundleNested.ts
│ │ │ │ ├── hasMissingTranslations.ts
│ │ │ │ ├── sortBundles.ts
│ │ │ │ ├── timeAgo.ts
│ │ │ │ ├── types.ts
│ │ │ │ └── utils.ts
│ │ │ ├── layout.tsx
│ │ │ ├── main.tsx
│ │ │ ├── routes
│ │ │ │ ├── changes
│ │ │ │ │ └── Page.tsx
│ │ │ │ ├── conflicts
│ │ │ │ │ └── Page.tsx
│ │ │ │ ├── history
│ │ │ │ │ └── Page.tsx
│ │ │ │ ├── index
│ │ │ │ │ └── Page.tsx
│ │ │ │ ├── routes.tsx
│ │ │ │ └── settings
│ │ │ │ │ └── Page.tsx
│ │ │ ├── state.ts
│ │ │ ├── style.css
│ │ │ └── vite-env.d.ts
│ │ ├── tsconfig.json
│ │ └── vite.config.ts
│ ├── marketplace-manifest
│ │ ├── .prettierrc
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── index.ts
│ │ │ ├── interface.test-d.ts
│ │ │ ├── interface.test.ts
│ │ │ ├── interface.ts
│ │ │ └── translatable.ts
│ │ └── tsconfig.json
│ ├── marketplace-registry
│ │ ├── .gitignore
│ │ ├── .prettierrc
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── buildRegistry.js
│ │ ├── package.json
│ │ ├── purgeRegistry.js
│ │ ├── registry.json
│ │ ├── src
│ │ │ ├── index.ts
│ │ │ └── isModule.ts
│ │ └── tsconfig.json
│ ├── paraglide
│ │ └── paraglide-js
│ │ │ ├── .oxlintrc.json
│ │ │ ├── .prettierrc
│ │ │ ├── CHANGELOG.md
│ │ │ ├── CONTRIBUTING.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── assets
│ │ │ ├── architecture.svg
│ │ │ ├── bundlesize-feature.png
│ │ │ ├── contributing-youtube.png
│ │ │ ├── header.png
│ │ │ ├── interactive-benchmark.png
│ │ │ ├── message-functions.png
│ │ │ ├── og.png
│ │ │ ├── paraglide-js-header.png
│ │ │ ├── paraglide-logo.webp
│ │ │ ├── paraglideNoBg.png
│ │ │ ├── reduced-payload.png
│ │ │ ├── sherlock-preview.png
│ │ │ ├── sveltekit-banner.png
│ │ │ ├── tree-shaking.jpg
│ │ │ ├── typesafe.png
│ │ │ ├── typesafety-feature.png
│ │ │ └── unused-translations.png
│ │ │ ├── benchmark
│ │ │ ├── .gitignore
│ │ │ ├── README.md
│ │ │ ├── bench.ts
│ │ │ ├── benchmark-results.json
│ │ │ ├── benchmark-results.md
│ │ │ ├── benchmark-visualization.js
│ │ │ ├── build.config.ts
│ │ │ ├── build.samples.ts
│ │ │ ├── build.ts
│ │ │ ├── index.html
│ │ │ ├── package.json
│ │ │ ├── server.ts
│ │ │ ├── src
│ │ │ │ ├── app.ts
│ │ │ │ ├── entry-client.ts
│ │ │ │ ├── entry-server.ts
│ │ │ │ ├── i18n
│ │ │ │ │ ├── generated.d.ts
│ │ │ │ │ ├── i18next.ts
│ │ │ │ │ └── paraglide.ts
│ │ │ │ └── vite-env.d.ts
│ │ │ └── tsconfig.json
│ │ │ ├── bin
│ │ │ └── run.js
│ │ │ ├── docs-api
│ │ │ ├── README.md
│ │ │ ├── compiler-options.md
│ │ │ ├── runtime
│ │ │ │ └── type
│ │ │ │ │ ├── -internal-.md
│ │ │ │ │ └── README.md
│ │ │ └── server
│ │ │ │ └── type
│ │ │ │ ├── -internal-.md
│ │ │ │ └── README.md
│ │ │ ├── docs
│ │ │ ├── architecture.md
│ │ │ ├── basics.md
│ │ │ ├── comparison.md
│ │ │ ├── compiling-messages.md
│ │ │ ├── errors.md
│ │ │ ├── file-formats.md
│ │ │ ├── getting-started
│ │ │ │ ├── next-js-banner.png
│ │ │ │ ├── next-js.md
│ │ │ │ └── vanilla-js-ts.md
│ │ │ ├── introduction.md
│ │ │ ├── limitations.md
│ │ │ ├── message-keys.md
│ │ │ ├── multi-tenancy.md
│ │ │ ├── scaling.md
│ │ │ ├── server-side-rendering.md
│ │ │ ├── strategy.md
│ │ │ └── variants.md
│ │ │ ├── examples
│ │ │ ├── astro
│ │ │ │ ├── .gitignore
│ │ │ │ ├── .vscode
│ │ │ │ │ ├── extensions.json
│ │ │ │ │ └── launch.json
│ │ │ │ ├── README.md
│ │ │ │ ├── assets
│ │ │ │ │ └── banner.png
│ │ │ │ ├── astro.config.mjs
│ │ │ │ ├── messages
│ │ │ │ │ ├── de.json
│ │ │ │ │ └── en.json
│ │ │ │ ├── package.json
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ ├── public
│ │ │ │ │ ├── favicon.svg
│ │ │ │ │ └── fonts
│ │ │ │ │ │ ├── atkinson-bold.woff
│ │ │ │ │ │ └── atkinson-regular.woff
│ │ │ │ ├── src
│ │ │ │ │ ├── components
│ │ │ │ │ │ ├── BaseHead.astro
│ │ │ │ │ │ ├── Counter.svelte
│ │ │ │ │ │ ├── Header.astro
│ │ │ │ │ │ ├── HeaderLink.astro
│ │ │ │ │ │ └── LocaleSwitch.astro
│ │ │ │ │ ├── consts.ts
│ │ │ │ │ ├── env.d.ts
│ │ │ │ │ ├── layouts
│ │ │ │ │ │ └── HTML.astro
│ │ │ │ │ ├── middleware.ts
│ │ │ │ │ ├── pages
│ │ │ │ │ │ ├── 404.astro
│ │ │ │ │ │ ├── index.astro
│ │ │ │ │ │ └── nested
│ │ │ │ │ │ │ └── index.astro
│ │ │ │ │ └── styles
│ │ │ │ │ │ └── global.css
│ │ │ │ └── tsconfig.json
│ │ │ ├── cli
│ │ │ │ ├── .vscode
│ │ │ │ │ └── extensions.json
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── messages
│ │ │ │ │ ├── de.json
│ │ │ │ │ ├── en-US.json
│ │ │ │ │ └── en.json
│ │ │ │ ├── package.json
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ ├── src
│ │ │ │ │ └── main.ts
│ │ │ │ └── tsconfig.json
│ │ │ ├── incremental-migration
│ │ │ │ ├── .gitignore
│ │ │ │ ├── .vscode
│ │ │ │ │ └── extensions.json
│ │ │ │ ├── README.md
│ │ │ │ ├── index.html
│ │ │ │ ├── locales
│ │ │ │ │ ├── de.json
│ │ │ │ │ └── en.json
│ │ │ │ ├── package.json
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ ├── src
│ │ │ │ │ ├── main.ts
│ │ │ │ │ └── vite-env.d.ts
│ │ │ │ ├── tsconfig.json
│ │ │ │ └── vite.config.js
│ │ │ ├── next-js-ssg
│ │ │ │ ├── .gitignore
│ │ │ │ ├── .vscode
│ │ │ │ │ └── extensions.json
│ │ │ │ ├── README.md
│ │ │ │ ├── messages
│ │ │ │ │ ├── de.json
│ │ │ │ │ └── en.json
│ │ │ │ ├── next.config.mjs
│ │ │ │ ├── package.json
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ ├── src
│ │ │ │ │ └── app
│ │ │ │ │ │ └── [locale]
│ │ │ │ │ │ ├── ClientSideLocaleSwitch.tsx
│ │ │ │ │ │ ├── layout.tsx
│ │ │ │ │ │ └── page.tsx
│ │ │ │ └── tsconfig.json
│ │ │ ├── next-js-ssr
│ │ │ │ ├── .gitignore
│ │ │ │ ├── .vscode
│ │ │ │ │ └── extensions.json
│ │ │ │ ├── README.md
│ │ │ │ ├── messages
│ │ │ │ │ ├── de.json
│ │ │ │ │ └── en.json
│ │ │ │ ├── next.config.mjs
│ │ │ │ ├── package.json
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ ├── src
│ │ │ │ │ ├── app
│ │ │ │ │ │ ├── ClientSideLocaleSwitch.tsx
│ │ │ │ │ │ ├── layout.tsx
│ │ │ │ │ │ ├── page.tsx
│ │ │ │ │ │ └── subpage
│ │ │ │ │ │ │ └── page.tsx
│ │ │ │ │ └── middleware.ts
│ │ │ │ └── tsconfig.json
│ │ │ ├── react-router
│ │ │ │ ├── .gitignore
│ │ │ │ ├── .vscode
│ │ │ │ │ └── extensions.json
│ │ │ │ ├── README.md
│ │ │ │ ├── app
│ │ │ │ │ ├── entry.client.tsx
│ │ │ │ │ ├── entry.server.tsx
│ │ │ │ │ ├── root.tsx
│ │ │ │ │ ├── routes.ts
│ │ │ │ │ └── routes
│ │ │ │ │ │ ├── about.tsx
│ │ │ │ │ │ └── home.tsx
│ │ │ │ ├── messages
│ │ │ │ │ ├── de.json
│ │ │ │ │ └── en.json
│ │ │ │ ├── package.json
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ ├── public
│ │ │ │ │ └── favicon.ico
│ │ │ │ ├── react-router.config.ts
│ │ │ │ ├── tsconfig.json
│ │ │ │ └── vite.config.ts
│ │ │ ├── react
│ │ │ │ ├── .gitignore
│ │ │ │ ├── README.md
│ │ │ │ ├── index.html
│ │ │ │ ├── messages
│ │ │ │ │ ├── de.json
│ │ │ │ │ ├── en.json
│ │ │ │ │ └── fr.json
│ │ │ │ ├── package.json
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ ├── public
│ │ │ │ │ └── vite.svg
│ │ │ │ ├── src
│ │ │ │ │ ├── App.tsx
│ │ │ │ │ ├── main.tsx
│ │ │ │ │ └── vite-env.d.ts
│ │ │ │ ├── tsconfig.json
│ │ │ │ └── vite.config.js
│ │ │ ├── sveltekit
│ │ │ │ ├── .gitignore
│ │ │ │ ├── .npmrc
│ │ │ │ ├── .prettierignore
│ │ │ │ ├── .prettierrc
│ │ │ │ ├── README.md
│ │ │ │ ├── messages
│ │ │ │ │ ├── de.json
│ │ │ │ │ └── en.json
│ │ │ │ ├── package.json
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ ├── src
│ │ │ │ │ ├── app.d.ts
│ │ │ │ │ ├── app.html
│ │ │ │ │ ├── hooks.server.ts
│ │ │ │ │ ├── hooks.ts
│ │ │ │ │ ├── lib
│ │ │ │ │ │ └── index.ts
│ │ │ │ │ └── routes
│ │ │ │ │ │ ├── +layout.svelte
│ │ │ │ │ │ ├── +layout.ts
│ │ │ │ │ │ ├── +page.svelte
│ │ │ │ │ │ └── about
│ │ │ │ │ │ └── +page.svelte
│ │ │ │ ├── static
│ │ │ │ │ └── favicon.png
│ │ │ │ ├── svelte.config.js
│ │ │ │ ├── sveltekit-banner.png
│ │ │ │ ├── tsconfig.json
│ │ │ │ └── vite.config.ts
│ │ │ └── vite
│ │ │ │ ├── .gitignore
│ │ │ │ ├── .vscode
│ │ │ │ └── extensions.json
│ │ │ │ ├── README.md
│ │ │ │ ├── index.html
│ │ │ │ ├── messages
│ │ │ │ ├── de.json
│ │ │ │ └── en.json
│ │ │ │ ├── package.json
│ │ │ │ ├── project.inlang
│ │ │ │ ├── .gitignore
│ │ │ │ ├── project_id
│ │ │ │ └── settings.json
│ │ │ │ ├── src
│ │ │ │ ├── main.ts
│ │ │ │ └── vite-env.d.ts
│ │ │ │ ├── tsconfig.json
│ │ │ │ └── vite.config.js
│ │ │ ├── marketplace-manifest.json
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ ├── bundler-plugins
│ │ │ │ ├── esbuild.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── rolldown.ts
│ │ │ │ ├── rollup.ts
│ │ │ │ ├── rspack.ts
│ │ │ │ ├── unplugin.test.ts
│ │ │ │ ├── unplugin.ts
│ │ │ │ ├── vite.ts
│ │ │ │ └── webpack.ts
│ │ │ ├── cli
│ │ │ │ ├── commands
│ │ │ │ │ ├── compile
│ │ │ │ │ │ └── command.ts
│ │ │ │ │ └── init
│ │ │ │ │ │ └── command.ts
│ │ │ │ ├── defaults.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── steps
│ │ │ │ │ ├── add-vite-plugin.test.ts
│ │ │ │ │ ├── add-vite-plugin.ts
│ │ │ │ │ ├── check-for-uncomitted-changes.ts
│ │ │ │ │ ├── detect-bundler.test.ts
│ │ │ │ │ ├── detect-bundler.ts
│ │ │ │ │ ├── initialize-inlang-project.ts
│ │ │ │ │ ├── maybe-add-machine-translation.ts
│ │ │ │ │ ├── maybe-add-sherlock.ts
│ │ │ │ │ ├── prompt-for-outdir.ts
│ │ │ │ │ ├── update-package-json.ts
│ │ │ │ │ ├── update-ts-config.test.ts
│ │ │ │ │ └── update-ts-config.ts
│ │ │ │ └── utils.ts
│ │ │ ├── compiler
│ │ │ │ ├── compile-bundle.test.ts
│ │ │ │ ├── compile-bundle.ts
│ │ │ │ ├── compile-local-variable.test.ts
│ │ │ │ ├── compile-local-variable.ts
│ │ │ │ ├── compile-message.test.ts
│ │ │ │ ├── compile-message.ts
│ │ │ │ ├── compile-pattern.test.ts
│ │ │ │ ├── compile-pattern.ts
│ │ │ │ ├── compile-project.test.ts
│ │ │ │ ├── compile-project.ts
│ │ │ │ ├── compile.bench.ts
│ │ │ │ ├── compile.test.ts
│ │ │ │ ├── compile.ts
│ │ │ │ ├── compiler-options.ts
│ │ │ │ ├── create-paraglide.test.ts
│ │ │ │ ├── create-paraglide.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── jsdoc-types.test.ts
│ │ │ │ ├── jsdoc-types.ts
│ │ │ │ ├── output-structure
│ │ │ │ │ ├── locale-modules.test.ts
│ │ │ │ │ ├── locale-modules.ts
│ │ │ │ │ ├── message-modules.test.ts
│ │ │ │ │ └── message-modules.ts
│ │ │ │ ├── registry.ts
│ │ │ │ ├── runtime
│ │ │ │ │ ├── ambient.d.ts
│ │ │ │ │ ├── assert-is-locale.js
│ │ │ │ │ ├── assert-is-locale.test.ts
│ │ │ │ │ ├── create-runtime.ts
│ │ │ │ │ ├── extract-locale-from-cookie.js
│ │ │ │ │ ├── extract-locale-from-cookie.test.ts
│ │ │ │ │ ├── extract-locale-from-header.js
│ │ │ │ │ ├── extract-locale-from-header.test.ts
│ │ │ │ │ ├── extract-locale-from-navigator.js
│ │ │ │ │ ├── extract-locale-from-navigator.test.ts
│ │ │ │ │ ├── extract-locale-from-request-async.js
│ │ │ │ │ ├── extract-locale-from-request-async.test.ts
│ │ │ │ │ ├── extract-locale-from-request.js
│ │ │ │ │ ├── extract-locale-from-request.test.ts
│ │ │ │ │ ├── extract-locale-from-url.js
│ │ │ │ │ ├── extract-locale-from-url.test.ts
│ │ │ │ │ ├── generate-static-localized-urls.js
│ │ │ │ │ ├── generate-static-localized-urls.test.ts
│ │ │ │ │ ├── get-locale.js
│ │ │ │ │ ├── get-locale.test.ts
│ │ │ │ │ ├── get-url-origin.js
│ │ │ │ │ ├── get-url-origin.test.ts
│ │ │ │ │ ├── is-locale.js
│ │ │ │ │ ├── is-locale.test.ts
│ │ │ │ │ ├── localize-href.js
│ │ │ │ │ ├── localize-href.test.ts
│ │ │ │ │ ├── localize-url.js
│ │ │ │ │ ├── localize-url.test.ts
│ │ │ │ │ ├── set-locale.js
│ │ │ │ │ ├── set-locale.test.ts
│ │ │ │ │ ├── should-redirect.js
│ │ │ │ │ ├── should-redirect.test.ts
│ │ │ │ │ ├── strategy.js
│ │ │ │ │ ├── strategy.test.ts
│ │ │ │ │ ├── track-message-call.js
│ │ │ │ │ ├── track-message-call.test.ts
│ │ │ │ │ ├── type.test.ts
│ │ │ │ │ ├── type.ts
│ │ │ │ │ └── variables.js
│ │ │ │ ├── safe-module-id.test.ts
│ │ │ │ ├── safe-module-id.ts
│ │ │ │ ├── server
│ │ │ │ │ ├── create-server-file.ts
│ │ │ │ │ ├── middleware.js
│ │ │ │ │ ├── middleware.test.ts
│ │ │ │ │ ├── runtime.d.ts
│ │ │ │ │ └── type.ts
│ │ │ │ └── types.ts
│ │ │ ├── index.ts
│ │ │ ├── services
│ │ │ │ ├── account
│ │ │ │ │ └── index.ts
│ │ │ │ ├── codegen
│ │ │ │ │ ├── escape.ts
│ │ │ │ │ └── quotes.ts
│ │ │ │ ├── env-variables
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── create-index-file.js
│ │ │ │ │ └── index.d.ts
│ │ │ │ ├── environment
│ │ │ │ │ ├── package.test.ts
│ │ │ │ │ └── package.ts
│ │ │ │ ├── error-handling.test.ts
│ │ │ │ ├── error-handling.ts
│ │ │ │ ├── file-handling
│ │ │ │ │ ├── exists.test.ts
│ │ │ │ │ ├── exists.ts
│ │ │ │ │ ├── types.ts
│ │ │ │ │ ├── write-output.test.ts
│ │ │ │ │ └── write-output.ts
│ │ │ │ ├── logger
│ │ │ │ │ └── index.ts
│ │ │ │ ├── lookup.ts
│ │ │ │ └── telemetry
│ │ │ │ │ ├── capture.test.ts
│ │ │ │ │ ├── capture.ts
│ │ │ │ │ ├── stack-detection.test.ts
│ │ │ │ │ └── stack-detection.ts
│ │ │ ├── urlpattern-polyfill
│ │ │ │ └── index.ts
│ │ │ └── utilities
│ │ │ │ ├── detect-json-formatting.ts
│ │ │ │ └── node-normalize-path.ts
│ │ │ ├── tsconfig.json
│ │ │ ├── typedoc.json
│ │ │ └── vitest.config.ts
│ ├── parrot-figma
│ │ ├── .github
│ │ │ └── workflows
│ │ │ │ ├── publish.yml
│ │ │ │ ├── todohub.yml
│ │ │ │ └── webpack.yml
│ │ ├── .gitignore
│ │ ├── .prettierrc.json
│ │ ├── .sentryignore
│ │ ├── LICENSE
│ │ ├── Parrot V2 beta.md
│ │ ├── README.md
│ │ ├── changelog-35.txt
│ │ ├── changelog-54.txt
│ │ ├── changelog-56.txt
│ │ ├── eslint.config.js
│ │ ├── manifest.figma.ts
│ │ ├── manifest.json
│ │ ├── package.json
│ │ ├── render.yaml
│ │ ├── snippets
│ │ │ ├── assets-and-resources.cjs
│ │ │ ├── figma-helper.js
│ │ │ ├── figma
│ │ │ │ └── releasehelper.js
│ │ │ ├── package-helper.js
│ │ │ ├── parrot-helper.js
│ │ │ ├── publish-release.js
│ │ │ ├── snippets
│ │ │ │ └── storage_tests.ts
│ │ │ └── update-version-number.js
│ │ ├── src
│ │ │ ├── global.d.ts
│ │ │ ├── lib
│ │ │ │ ├── api
│ │ │ │ │ └── Parrot.tsx
│ │ │ │ ├── export
│ │ │ │ │ ├── MessageExporter.ts
│ │ │ │ │ └── templates
│ │ │ │ │ │ ├── AndroidXmlExporter.ejs
│ │ │ │ │ │ ├── AppleDictFileExporter.ejs
│ │ │ │ │ │ ├── AppleStringsFileExporter.ejs
│ │ │ │ │ │ └── i18nextJsonExporter.ejs
│ │ │ │ ├── external
│ │ │ │ │ └── quill-react
│ │ │ │ │ │ ├── index.tsx
│ │ │ │ │ │ ├── quill.bubble.css
│ │ │ │ │ │ ├── quill.core.css
│ │ │ │ │ │ └── quill.snow.css
│ │ │ │ ├── featureflags
│ │ │ │ │ └── FeatureFlags.tsx
│ │ │ │ ├── import
│ │ │ │ │ ├── AndroidXmlImporter.tsx
│ │ │ │ │ ├── AppleDictFileImporter.tsx
│ │ │ │ │ ├── AppleStringsFileImporter.tsx
│ │ │ │ │ ├── I18Next.tsx
│ │ │ │ │ ├── ImportMessage.ts
│ │ │ │ │ ├── MessageImporter.tsx
│ │ │ │ │ └── lokalise.tsx
│ │ │ │ ├── localizedlabels
│ │ │ │ │ ├── ChangeEvent.ts
│ │ │ │ │ ├── FontUtil.ts
│ │ │ │ │ ├── LinksLoadedEvent.ts
│ │ │ │ │ ├── LocalizedLabel.ts
│ │ │ │ │ ├── LocalizedLabelManager.ts
│ │ │ │ │ ├── LocalizedLabelManagerUI.ts
│ │ │ │ │ ├── UILocalizedLabel.ts
│ │ │ │ │ ├── VirtualTree.ts
│ │ │ │ │ └── lint
│ │ │ │ │ │ ├── TextNodeLinter.ts
│ │ │ │ │ │ └── rules
│ │ │ │ │ │ ├── BaseTextNodeLintRule.ts
│ │ │ │ │ │ ├── FontStyleNotSupported.ts
│ │ │ │ │ │ ├── IndentationNotSupported.ts
│ │ │ │ │ │ ├── ListOptionTypeUnknown.ts
│ │ │ │ │ │ ├── MixedFontFamiliesNotSupported.ts
│ │ │ │ │ │ ├── MixedStyleNotSupported.ts
│ │ │ │ │ │ ├── MixedStyleNotSupportedOpenTypeFace.ts
│ │ │ │ │ │ └── TextDecorationUnknown.ts
│ │ │ │ ├── message
│ │ │ │ │ ├── MessageExtnesions.ts
│ │ │ │ │ ├── MessageParameterValues.ts
│ │ │ │ │ ├── MessageUI.ts
│ │ │ │ │ ├── Placeholder.ts
│ │ │ │ │ ├── PlaceholderUtil.ts
│ │ │ │ │ ├── store
│ │ │ │ │ │ ├── InlangMessageStoreFigmaRoot.ts
│ │ │ │ │ │ ├── MessageStoreBase.ts
│ │ │ │ │ │ ├── MessageStoreFigmaRoot.ts.temp
│ │ │ │ │ │ ├── MessageStoreMemory.ts
│ │ │ │ │ │ └── inlang
│ │ │ │ │ │ │ ├── FigmaRootFs.ts
│ │ │ │ │ │ │ └── plugin-check.ts.temp
│ │ │ │ │ └── variants
│ │ │ │ │ │ ├── Gender.ts
│ │ │ │ │ │ ├── Locale.ts
│ │ │ │ │ │ └── Plural.ts
│ │ │ │ ├── migrations
│ │ │ │ │ └── MigrationManager.ts
│ │ │ │ ├── monitoring
│ │ │ │ │ └── MonitoringProxy.tsx
│ │ │ │ ├── quil-converter
│ │ │ │ │ └── converter.tsx
│ │ │ │ ├── rpc
│ │ │ │ │ └── AsyncFunctionProxy.ts
│ │ │ │ ├── translationprovider
│ │ │ │ │ ├── TranslationCredit.tsx
│ │ │ │ │ ├── TranslatorMachine.tsx
│ │ │ │ │ └── google.tsx
│ │ │ │ ├── usage
│ │ │ │ │ ├── FileUsage.tsx
│ │ │ │ │ ├── UsageManager.tsx
│ │ │ │ │ ├── UsageManagerUI.tsx
│ │ │ │ │ ├── UserInFile.tsx
│ │ │ │ │ ├── UserRoleRequest.tsx
│ │ │ │ │ ├── UserStorage.tsx
│ │ │ │ │ ├── generateGUID.tsx
│ │ │ │ │ └── mergeDeep.tsx
│ │ │ │ └── windowManager
│ │ │ │ │ ├── WindowManagerSandbox.ts
│ │ │ │ │ └── WindowManagerUI.ts
│ │ │ ├── plugin
│ │ │ │ ├── loader.js
│ │ │ │ └── plugin.ts
│ │ │ ├── react-18next.d.ts
│ │ │ ├── shared
│ │ │ │ ├── FigmaHelper.ts
│ │ │ │ └── FigmaUtil.ts
│ │ │ └── ui
│ │ │ │ ├── LanguageContext.tsx
│ │ │ │ ├── assets
│ │ │ │ ├── 16
│ │ │ │ │ ├── hyperlink.svg
│ │ │ │ │ ├── list-detailed.svg
│ │ │ │ │ ├── list-numbered.svg
│ │ │ │ │ ├── no_message.svg
│ │ │ │ │ ├── no_translations.svg
│ │ │ │ │ ├── resize-height.svg
│ │ │ │ │ ├── text-decoration-bold.svg
│ │ │ │ │ ├── text-decoration-italic.svg
│ │ │ │ │ ├── text-decoration-strikethrough.svg
│ │ │ │ │ ├── text-decoration-underline.png
│ │ │ │ │ ├── text-decoration-underline.svg
│ │ │ │ │ ├── variable.svg
│ │ │ │ │ └── world.svg
│ │ │ │ ├── 32
│ │ │ │ │ ├── copy.svg
│ │ │ │ │ ├── goto_message.svg
│ │ │ │ │ ├── goto_message_small.svg
│ │ │ │ │ ├── no_message.svg
│ │ │ │ │ ├── no_message_small.svg
│ │ │ │ │ ├── not_localized.svg
│ │ │ │ │ ├── not_localized_small.svg
│ │ │ │ │ ├── notice.svg
│ │ │ │ │ ├── search.svg
│ │ │ │ │ ├── switch_language.svg
│ │ │ │ │ ├── three dots.svg
│ │ │ │ │ ├── three-dots.svg
│ │ │ │ │ ├── to_message.svg
│ │ │ │ │ ├── update_message.svg
│ │ │ │ │ ├── update_text_layer.svg
│ │ │ │ │ ├── with_message.svg
│ │ │ │ │ └── with_message_small.svg
│ │ │ │ ├── Frame 1.svg
│ │ │ │ ├── app_shortcut.svg
│ │ │ │ ├── arrow_down.svg
│ │ │ │ ├── arrow_up.svg
│ │ │ │ ├── caret.svg
│ │ │ │ ├── checkbox.svg
│ │ │ │ ├── checkmark-pricing.svg
│ │ │ │ ├── checkmark.svg
│ │ │ │ ├── create.svg
│ │ │ │ ├── cross.png
│ │ │ │ ├── cross.svg
│ │ │ │ ├── dot.svg
│ │ │ │ ├── download.svg
│ │ │ │ ├── edit.svg
│ │ │ │ ├── english.svg
│ │ │ │ ├── expand.svg
│ │ │ │ ├── eye-closed.svg
│ │ │ │ ├── eye.svg
│ │ │ │ ├── flags
│ │ │ │ │ ├── ac.svg
│ │ │ │ │ ├── ad.svg
│ │ │ │ │ ├── ae.svg
│ │ │ │ │ ├── af.svg
│ │ │ │ │ ├── ag.svg
│ │ │ │ │ ├── ai.svg
│ │ │ │ │ ├── al.svg
│ │ │ │ │ ├── am.svg
│ │ │ │ │ ├── ao.svg
│ │ │ │ │ ├── aq.svg
│ │ │ │ │ ├── ar.svg
│ │ │ │ │ ├── as.svg
│ │ │ │ │ ├── at.svg
│ │ │ │ │ ├── au.svg
│ │ │ │ │ ├── aw.svg
│ │ │ │ │ ├── ax.svg
│ │ │ │ │ ├── az.svg
│ │ │ │ │ ├── ba.svg
│ │ │ │ │ ├── bb.svg
│ │ │ │ │ ├── bd.svg
│ │ │ │ │ ├── be.svg
│ │ │ │ │ ├── bf.svg
│ │ │ │ │ ├── bg.svg
│ │ │ │ │ ├── bh.svg
│ │ │ │ │ ├── bi.svg
│ │ │ │ │ ├── bj.svg
│ │ │ │ │ ├── bl.svg
│ │ │ │ │ ├── bm.svg
│ │ │ │ │ ├── bn.svg
│ │ │ │ │ ├── bo.svg
│ │ │ │ │ ├── bq.svg
│ │ │ │ │ ├── br.svg
│ │ │ │ │ ├── bs.svg
│ │ │ │ │ ├── bt.svg
│ │ │ │ │ ├── bv.svg
│ │ │ │ │ ├── bw.svg
│ │ │ │ │ ├── by.svg
│ │ │ │ │ ├── bz.svg
│ │ │ │ │ ├── ca.svg
│ │ │ │ │ ├── cc.svg
│ │ │ │ │ ├── cd.svg
│ │ │ │ │ ├── cefta.svg
│ │ │ │ │ ├── cf.svg
│ │ │ │ │ ├── cg.svg
│ │ │ │ │ ├── ch.svg
│ │ │ │ │ ├── ci.svg
│ │ │ │ │ ├── ck.svg
│ │ │ │ │ ├── cl.svg
│ │ │ │ │ ├── cm.svg
│ │ │ │ │ ├── cn.svg
│ │ │ │ │ ├── co.svg
│ │ │ │ │ ├── cp.svg
│ │ │ │ │ ├── cr.svg
│ │ │ │ │ ├── cu.svg
│ │ │ │ │ ├── cv.svg
│ │ │ │ │ ├── cw.svg
│ │ │ │ │ ├── cx.svg
│ │ │ │ │ ├── cy.svg
│ │ │ │ │ ├── cz.svg
│ │ │ │ │ ├── de.svg
│ │ │ │ │ ├── dg.svg
│ │ │ │ │ ├── dj.svg
│ │ │ │ │ ├── dk.svg
│ │ │ │ │ ├── dm.svg
│ │ │ │ │ ├── do.svg
│ │ │ │ │ ├── dz.svg
│ │ │ │ │ ├── ea.svg
│ │ │ │ │ ├── ec.svg
│ │ │ │ │ ├── ee.svg
│ │ │ │ │ ├── eg.svg
│ │ │ │ │ ├── eh.svg
│ │ │ │ │ ├── er.svg
│ │ │ │ │ ├── es-ct.svg
│ │ │ │ │ ├── es-ga.svg
│ │ │ │ │ ├── es-pv.svg
│ │ │ │ │ ├── es.svg
│ │ │ │ │ ├── et.svg
│ │ │ │ │ ├── eu.svg
│ │ │ │ │ ├── fi.svg
│ │ │ │ │ ├── fj.svg
│ │ │ │ │ ├── fk.svg
│ │ │ │ │ ├── fm.svg
│ │ │ │ │ ├── fo.svg
│ │ │ │ │ ├── fr.svg
│ │ │ │ │ ├── ga.svg
│ │ │ │ │ ├── gb-eng.svg
│ │ │ │ │ ├── gb-nir.svg
│ │ │ │ │ ├── gb-sct.svg
│ │ │ │ │ ├── gb-wls.svg
│ │ │ │ │ ├── gb.svg
│ │ │ │ │ ├── gd.svg
│ │ │ │ │ ├── ge.svg
│ │ │ │ │ ├── gf.svg
│ │ │ │ │ ├── gg.svg
│ │ │ │ │ ├── gh.svg
│ │ │ │ │ ├── gi.svg
│ │ │ │ │ ├── gl.svg
│ │ │ │ │ ├── gm.svg
│ │ │ │ │ ├── gn.svg
│ │ │ │ │ ├── gp.svg
│ │ │ │ │ ├── gq.svg
│ │ │ │ │ ├── gr.svg
│ │ │ │ │ ├── gs.svg
│ │ │ │ │ ├── gt.svg
│ │ │ │ │ ├── gu.svg
│ │ │ │ │ ├── gw.svg
│ │ │ │ │ ├── gy.svg
│ │ │ │ │ ├── hk.svg
│ │ │ │ │ ├── hm.svg
│ │ │ │ │ ├── hn.svg
│ │ │ │ │ ├── hr.svg
│ │ │ │ │ ├── ht.svg
│ │ │ │ │ ├── hu.svg
│ │ │ │ │ ├── ic.svg
│ │ │ │ │ ├── id.svg
│ │ │ │ │ ├── ie.svg
│ │ │ │ │ ├── il.svg
│ │ │ │ │ ├── im.svg
│ │ │ │ │ ├── in.svg
│ │ │ │ │ ├── io.svg
│ │ │ │ │ ├── iq.svg
│ │ │ │ │ ├── ir.svg
│ │ │ │ │ ├── is.svg
│ │ │ │ │ ├── it.svg
│ │ │ │ │ ├── je.svg
│ │ │ │ │ ├── jm.svg
│ │ │ │ │ ├── jo.svg
│ │ │ │ │ ├── jp.svg
│ │ │ │ │ ├── ke.svg
│ │ │ │ │ ├── kg.svg
│ │ │ │ │ ├── kh.svg
│ │ │ │ │ ├── ki.svg
│ │ │ │ │ ├── km.svg
│ │ │ │ │ ├── kn.svg
│ │ │ │ │ ├── kp.svg
│ │ │ │ │ ├── kr.svg
│ │ │ │ │ ├── kw.svg
│ │ │ │ │ ├── ky.svg
│ │ │ │ │ ├── kz.svg
│ │ │ │ │ ├── la.svg
│ │ │ │ │ ├── lb.svg
│ │ │ │ │ ├── lc.svg
│ │ │ │ │ ├── li.svg
│ │ │ │ │ ├── lk.svg
│ │ │ │ │ ├── lr.svg
│ │ │ │ │ ├── ls.svg
│ │ │ │ │ ├── lt.svg
│ │ │ │ │ ├── lu.svg
│ │ │ │ │ ├── lv.svg
│ │ │ │ │ ├── ly.svg
│ │ │ │ │ ├── ma.svg
│ │ │ │ │ ├── mc.svg
│ │ │ │ │ ├── md.svg
│ │ │ │ │ ├── me.svg
│ │ │ │ │ ├── mf.svg
│ │ │ │ │ ├── mg.svg
│ │ │ │ │ ├── mh.svg
│ │ │ │ │ ├── mk.svg
│ │ │ │ │ ├── ml.svg
│ │ │ │ │ ├── mm.svg
│ │ │ │ │ ├── mn.svg
│ │ │ │ │ ├── mo.svg
│ │ │ │ │ ├── mp.svg
│ │ │ │ │ ├── mq.svg
│ │ │ │ │ ├── mr.svg
│ │ │ │ │ ├── ms.svg
│ │ │ │ │ ├── mt.svg
│ │ │ │ │ ├── mu.svg
│ │ │ │ │ ├── mv.svg
│ │ │ │ │ ├── mw.svg
│ │ │ │ │ ├── mx.svg
│ │ │ │ │ ├── my.svg
│ │ │ │ │ ├── mz.svg
│ │ │ │ │ ├── na.svg
│ │ │ │ │ ├── nc.svg
│ │ │ │ │ ├── ne.svg
│ │ │ │ │ ├── nf.svg
│ │ │ │ │ ├── ng.svg
│ │ │ │ │ ├── ni.svg
│ │ │ │ │ ├── nl.svg
│ │ │ │ │ ├── no.svg
│ │ │ │ │ ├── np.svg
│ │ │ │ │ ├── nr.svg
│ │ │ │ │ ├── nu.svg
│ │ │ │ │ ├── nz.svg
│ │ │ │ │ ├── om.svg
│ │ │ │ │ ├── pa.svg
│ │ │ │ │ ├── pe.svg
│ │ │ │ │ ├── pf.svg
│ │ │ │ │ ├── pg.svg
│ │ │ │ │ ├── ph.svg
│ │ │ │ │ ├── pk.svg
│ │ │ │ │ ├── pl.svg
│ │ │ │ │ ├── pm.svg
│ │ │ │ │ ├── pn.svg
│ │ │ │ │ ├── pr.svg
│ │ │ │ │ ├── ps.svg
│ │ │ │ │ ├── pt.svg
│ │ │ │ │ ├── pw.svg
│ │ │ │ │ ├── py.svg
│ │ │ │ │ ├── qa.svg
│ │ │ │ │ ├── re.svg
│ │ │ │ │ ├── ro.svg
│ │ │ │ │ ├── rs.svg
│ │ │ │ │ ├── ru.svg
│ │ │ │ │ ├── rw.svg
│ │ │ │ │ ├── sa.svg
│ │ │ │ │ ├── sb.svg
│ │ │ │ │ ├── sc.svg
│ │ │ │ │ ├── sd.svg
│ │ │ │ │ ├── sg.svg
│ │ │ │ │ ├── sh.svg
│ │ │ │ │ ├── si.svg
│ │ │ │ │ ├── sj.svg
│ │ │ │ │ ├── sk.svg
│ │ │ │ │ ├── sl.svg
│ │ │ │ │ ├── sm.svg
│ │ │ │ │ ├── sn.svg
│ │ │ │ │ ├── so.svg
│ │ │ │ │ ├── sr.svg
│ │ │ │ │ ├── ss.svg
│ │ │ │ │ ├── st.svg
│ │ │ │ │ ├── sv.svg
│ │ │ │ │ ├── sx.svg
│ │ │ │ │ ├── sy.svg
│ │ │ │ │ ├── sz.svg
│ │ │ │ │ ├── ta.svg
│ │ │ │ │ ├── tc.svg
│ │ │ │ │ ├── td.svg
│ │ │ │ │ ├── tf.svg
│ │ │ │ │ ├── tg.svg
│ │ │ │ │ ├── th.svg
│ │ │ │ │ ├── tj.svg
│ │ │ │ │ ├── tk.svg
│ │ │ │ │ ├── tl.svg
│ │ │ │ │ ├── tm.svg
│ │ │ │ │ ├── tn.svg
│ │ │ │ │ ├── to.svg
│ │ │ │ │ ├── tr.svg
│ │ │ │ │ ├── tt.svg
│ │ │ │ │ ├── tv.svg
│ │ │ │ │ ├── tw.svg
│ │ │ │ │ ├── tz.svg
│ │ │ │ │ ├── ua.svg
│ │ │ │ │ ├── ug.svg
│ │ │ │ │ ├── um.svg
│ │ │ │ │ ├── un.svg
│ │ │ │ │ ├── us.svg
│ │ │ │ │ ├── uy.svg
│ │ │ │ │ ├── uz.svg
│ │ │ │ │ ├── va.svg
│ │ │ │ │ ├── vc.svg
│ │ │ │ │ ├── ve.svg
│ │ │ │ │ ├── vg.svg
│ │ │ │ │ ├── vi.svg
│ │ │ │ │ ├── vn.svg
│ │ │ │ │ ├── vu.svg
│ │ │ │ │ ├── wf.svg
│ │ │ │ │ ├── ws.svg
│ │ │ │ │ ├── x.svg
│ │ │ │ │ ├── xk.svg
│ │ │ │ │ ├── xx.svg
│ │ │ │ │ ├── ye.svg
│ │ │ │ │ ├── yt.svg
│ │ │ │ │ ├── za.svg
│ │ │ │ │ ├── zm.svg
│ │ │ │ │ └── zw.svg
│ │ │ │ ├── germany.svg
│ │ │ │ ├── heart.svg
│ │ │ │ ├── history.svg
│ │ │ │ ├── icons.css
│ │ │ │ ├── key.svg
│ │ │ │ ├── language.svg
│ │ │ │ ├── link.svg
│ │ │ │ ├── linked.svg
│ │ │ │ ├── menu-checkmark.svg
│ │ │ │ ├── no-plural.svg
│ │ │ │ ├── number_sign.svg
│ │ │ │ ├── placeholder-filled.svg
│ │ │ │ ├── placeholder-inherited.svg
│ │ │ │ ├── placeholder.svg
│ │ │ │ ├── plural.svg
│ │ │ │ ├── plus.svg
│ │ │ │ ├── refresh.svg
│ │ │ │ ├── reset-instance.svg
│ │ │ │ ├── restore.svg
│ │ │ │ ├── search.svg
│ │ │ │ ├── settings.svg
│ │ │ │ ├── svg.svg
│ │ │ │ ├── text_sign.svg
│ │ │ │ ├── tiles.html
│ │ │ │ ├── trash.svg
│ │ │ │ ├── undo.svg
│ │ │ │ ├── unlinked.svg
│ │ │ │ ├── upload.svg
│ │ │ │ ├── use-label.svg
│ │ │ │ ├── variable.svg
│ │ │ │ ├── warning.svg
│ │ │ │ ├── window_mode_bottom_attached.svg
│ │ │ │ ├── window_mode_fullscreen.svg
│ │ │ │ ├── window_mode_minimized.svg
│ │ │ │ ├── window_mode_window.svg
│ │ │ │ └── world.svg
│ │ │ │ ├── compontents
│ │ │ │ ├── drawer
│ │ │ │ │ ├── Drawer.css
│ │ │ │ │ └── Drawer.tsx
│ │ │ │ ├── dropzone
│ │ │ │ │ ├── Dropzone.css
│ │ │ │ │ └── Dropzone.tsx
│ │ │ │ ├── fileselect
│ │ │ │ │ ├── FileSelect.css
│ │ │ │ │ └── FileSelect.tsx
│ │ │ │ ├── history
│ │ │ │ │ ├── DiffView.tsx
│ │ │ │ │ ├── HistoryEntryView.css
│ │ │ │ │ └── HistoryEntryView.tsx
│ │ │ │ ├── languageSetup
│ │ │ │ │ ├── LanguageSetup.css
│ │ │ │ │ └── LanguageSetup.tsx
│ │ │ │ ├── matchview
│ │ │ │ │ └── MatchView.tsx
│ │ │ │ ├── overlayscrollbar
│ │ │ │ │ └── index.tsx
│ │ │ │ ├── placeholder
│ │ │ │ │ └── PlaceholderEditor.tsx
│ │ │ │ ├── plans
│ │ │ │ │ ├── ComparisonChart.css
│ │ │ │ │ ├── ComparisonChart.tsx
│ │ │ │ │ ├── MessagesConsumptionPaywall.css
│ │ │ │ │ └── MessagesConsumptionPaywall.tsx
│ │ │ │ ├── segmentedControl
│ │ │ │ │ ├── SegmentedControl.css
│ │ │ │ │ └── SegmentedControl.tsx
│ │ │ │ ├── select
│ │ │ │ │ ├── select.css
│ │ │ │ │ └── select.tsx
│ │ │ │ ├── selectInput
│ │ │ │ │ ├── inputselect.css
│ │ │ │ │ └── inputselect.tsx
│ │ │ │ ├── textfield
│ │ │ │ │ ├── TextField.css
│ │ │ │ │ └── TextField.tsx
│ │ │ │ ├── tileselect
│ │ │ │ │ ├── tileselect.css
│ │ │ │ │ └── tileselect.tsx
│ │ │ │ ├── tooltip
│ │ │ │ │ ├── Tooltip.css
│ │ │ │ │ └── Tooltip.tsx
│ │ │ │ ├── translationEditor
│ │ │ │ │ ├── PlaceholderView.tsx
│ │ │ │ │ ├── TranslationEditor.css
│ │ │ │ │ ├── TranslationEditor.tsx
│ │ │ │ │ ├── TranslationView.tsx
│ │ │ │ │ ├── blots
│ │ │ │ │ │ ├── BoldBlot.tsx
│ │ │ │ │ │ ├── ItalicBlot.tsx
│ │ │ │ │ │ ├── LinkBlot.tsx
│ │ │ │ │ │ ├── List.tsx
│ │ │ │ │ │ ├── MyList.tsx
│ │ │ │ │ │ ├── PlaceholderBlot.tsx
│ │ │ │ │ │ └── TextDecorationBlot.tsx
│ │ │ │ │ ├── quill.bubble.css
│ │ │ │ │ └── toolbar
│ │ │ │ │ │ ├── TooltipToolbar.css
│ │ │ │ │ │ ├── TooltipToolbar.tsx
│ │ │ │ │ │ └── compontents
│ │ │ │ │ │ ├── FormatButton.tsx
│ │ │ │ │ │ ├── FormatLinkButton.tsx
│ │ │ │ │ │ └── FormatPlaceholder.tsx
│ │ │ │ └── upselloverlay
│ │ │ │ │ ├── MessageUpsellOverlay.tsx
│ │ │ │ │ ├── UpsellOverlay.css
│ │ │ │ │ └── UpsellOverlay.tsx
│ │ │ │ ├── featuretoggle.tsx
│ │ │ │ ├── figma_dark.css
│ │ │ │ ├── figma_light.css
│ │ │ │ ├── grid.html
│ │ │ │ ├── index.html
│ │ │ │ ├── localization
│ │ │ │ ├── i18n.ts
│ │ │ │ ├── strings.ts
│ │ │ │ └── useTranslation.ts
│ │ │ │ ├── tabbar.css
│ │ │ │ ├── ui.css
│ │ │ │ ├── ui.tsx
│ │ │ │ ├── utils
│ │ │ │ ├── analytics.ts
│ │ │ │ └── sentry.ts
│ │ │ │ └── views
│ │ │ │ ├── export
│ │ │ │ ├── Export.css
│ │ │ │ └── Export.tsx
│ │ │ │ ├── localizedlabelslist
│ │ │ │ ├── LocalizedFrameGroup.tsx
│ │ │ │ ├── LocalizedLabelListItem.tsx
│ │ │ │ ├── LocalizedLabelsListView.css
│ │ │ │ └── LocalizedLabelsListView.tsx
│ │ │ │ ├── messages
│ │ │ │ ├── AsyncImage.tsx
│ │ │ │ ├── MessageListItem.tsx
│ │ │ │ ├── MessageListView.tsx
│ │ │ │ ├── MessageVariantItem.tsx
│ │ │ │ └── MessageView.css
│ │ │ │ ├── onboarding
│ │ │ │ ├── Onboarding.css
│ │ │ │ └── Onboarding.tsx
│ │ │ │ ├── setup
│ │ │ │ ├── SetupView.css
│ │ │ │ └── SetupView.tsx
│ │ │ │ └── usermanagement
│ │ │ │ └── Usermanagement.tsx
│ │ ├── tsconfig.json
│ │ ├── vite.config.sandbox.ts
│ │ └── vite.config.ts
│ ├── plugins
│ │ ├── i18next
│ │ │ ├── .prettierrc
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── assets
│ │ │ │ └── icon.png
│ │ │ ├── build.js
│ │ │ ├── example
│ │ │ │ ├── README.md
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ └── translations
│ │ │ │ │ ├── de.json
│ │ │ │ │ └── en.json
│ │ │ ├── marketplace-manifest.json
│ │ │ ├── package.json
│ │ │ ├── patches
│ │ │ │ └── parsimmon+1.18.1.patch
│ │ │ ├── src
│ │ │ │ ├── ideExtension
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── messageReferenceMatchers.test.ts
│ │ │ │ │ └── messageReferenceMatchers.ts
│ │ │ │ ├── import-export
│ │ │ │ │ ├── exportFiles.ts
│ │ │ │ │ ├── importFiles.ts
│ │ │ │ │ ├── roundtrip.test.ts
│ │ │ │ │ ├── toBeImportedFiles.test.ts
│ │ │ │ │ └── toBeImportedFiles.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── legacy
│ │ │ │ │ └── plugin.v4.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ ├── settings.test.ts
│ │ │ │ ├── settings.ts
│ │ │ │ └── utilities.ts
│ │ │ └── tsconfig.json
│ │ ├── icu1
│ │ │ ├── build.js
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ ├── parse.test.ts
│ │ │ │ ├── parse.ts
│ │ │ │ ├── plugin.test.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ ├── serialize.test.ts
│ │ │ │ ├── serialize.ts
│ │ │ │ └── settings.ts
│ │ │ └── tsconfig.json
│ │ ├── inlang-message-format
│ │ │ ├── .prettierrc
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── build.js
│ │ │ ├── example
│ │ │ │ ├── project.inlang
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── project_id
│ │ │ │ │ └── settings.json
│ │ │ │ └── translations
│ │ │ │ │ ├── de.json
│ │ │ │ │ └── en.json
│ │ │ ├── marketplace-manifest.json
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── fileSchema.test.ts
│ │ │ │ ├── fileSchema.ts
│ │ │ │ ├── import-export
│ │ │ │ │ ├── exportFiles.ts
│ │ │ │ │ ├── importFiles.ts
│ │ │ │ │ ├── roundtrip.test.ts
│ │ │ │ │ ├── toBeImportedFiles.test.ts
│ │ │ │ │ └── toBeImportedFiles.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ ├── settings.test.ts
│ │ │ │ ├── settings.ts
│ │ │ │ └── v2
│ │ │ │ │ ├── parsing
│ │ │ │ │ ├── parseMessage.test.ts
│ │ │ │ │ ├── parseMessage.ts
│ │ │ │ │ ├── parsePattern.test.ts
│ │ │ │ │ ├── parsePattern.ts
│ │ │ │ │ ├── serializeMessage.test.ts
│ │ │ │ │ ├── serializeMessage.ts
│ │ │ │ │ ├── serializePattern.test.ts
│ │ │ │ │ └── serializePattern.ts
│ │ │ │ │ ├── plugin.test.ts
│ │ │ │ │ └── plugin.ts
│ │ │ └── tsconfig.json
│ │ ├── json
│ │ │ ├── .prettierrc
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── assets
│ │ │ │ └── icon.png
│ │ │ ├── build.js
│ │ │ ├── marketplace-manifest.json
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── index.ts
│ │ │ │ ├── plugin.test.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ ├── settings.test.ts
│ │ │ │ ├── settings.ts
│ │ │ │ └── utilities.ts
│ │ │ └── tsconfig.json
│ │ ├── m-function-matcher
│ │ │ ├── .prettierrc
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── assets
│ │ │ │ └── m.png
│ │ │ ├── build.js
│ │ │ ├── marketplace-manifest.json
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── ideExtension
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── messageReferenceMatchers.test.ts
│ │ │ │ │ ├── messageReferenceMatchers.ts
│ │ │ │ │ └── utils
│ │ │ │ │ │ ├── transformBundleId.test.ts
│ │ │ │ │ │ └── transformBundleId.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ └── settings.ts
│ │ │ └── tsconfig.json
│ │ ├── next-intl
│ │ │ ├── .prettierrc
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── assets
│ │ │ │ ├── icon.png
│ │ │ │ └── plugin-next-intl-logo.png
│ │ │ ├── build.js
│ │ │ ├── marketplace-manifest.json
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── ideExtension
│ │ │ │ │ ├── config.ts
│ │ │ │ │ ├── messageReferenceMatchers.test.ts
│ │ │ │ │ └── messageReferenceMatchers.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── plugin.test.ts
│ │ │ │ ├── plugin.ts
│ │ │ │ ├── settings.test.ts
│ │ │ │ ├── settings.ts
│ │ │ │ └── utilities.ts
│ │ │ └── tsconfig.json
│ │ └── t-function-matcher
│ │ │ ├── .prettierrc
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── assets
│ │ │ └── t.png
│ │ │ ├── build.js
│ │ │ ├── marketplace-manifest.json
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ ├── ideExtension
│ │ │ │ ├── config.ts
│ │ │ │ ├── messageReferenceMatchers.test.ts
│ │ │ │ └── messageReferenceMatchers.ts
│ │ │ ├── index.ts
│ │ │ ├── plugin.ts
│ │ │ └── settings.ts
│ │ │ └── tsconfig.json
│ ├── recommendations
│ │ └── recommend-sherlock
│ │ │ ├── .prettierrc
│ │ │ ├── CHANGELOG.md
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ ├── index.test.ts
│ │ │ ├── index.ts
│ │ │ └── recommendation
│ │ │ │ ├── recommendation.ts
│ │ │ │ └── utils
│ │ │ │ ├── exists.test.ts
│ │ │ │ ├── exists.ts
│ │ │ │ └── types.ts
│ │ │ └── tsconfig.json
│ ├── rpc
│ │ ├── .prettierrc
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── client.ts
│ │ │ ├── functions
│ │ │ │ ├── index.ts
│ │ │ │ ├── machineTranslateBundle.test.ts
│ │ │ │ ├── machineTranslateBundle.ts
│ │ │ │ ├── machineTranslateMessage.ts
│ │ │ │ ├── subscribeCategory.ts
│ │ │ │ └── subscribeNewsletter.ts
│ │ │ ├── index.ts
│ │ │ ├── router.ts
│ │ │ ├── services
│ │ │ │ └── env-variables
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── createIndexFile.js
│ │ │ │ │ └── index.d.ts
│ │ │ └── types.ts
│ │ └── tsconfig.json
│ ├── sdk
│ │ ├── .prettierrc.json
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── assets
│ │ │ └── open-file.svg
│ │ ├── eslint.config.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── database
│ │ │ │ ├── initDb.ts
│ │ │ │ ├── initDbAndSchema.test.ts
│ │ │ │ ├── jsonPlugin.ts
│ │ │ │ └── schema.ts
│ │ │ ├── helper.ts
│ │ │ ├── human-id
│ │ │ │ ├── human-id.ts
│ │ │ │ ├── words.test.ts
│ │ │ │ └── words.ts
│ │ │ ├── import-export
│ │ │ │ ├── exportFiles.ts
│ │ │ │ ├── importFiles.test.ts
│ │ │ │ ├── importFiles.ts
│ │ │ │ ├── roundtrip.test.ts
│ │ │ │ └── upsertBundleNestedMatchByProperties.ts
│ │ │ ├── index.ts
│ │ │ ├── json-schema
│ │ │ │ ├── old-v1-message
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── fromMessageV1.test.ts
│ │ │ │ │ ├── fromMessageV1.ts
│ │ │ │ │ ├── schemaV1.ts
│ │ │ │ │ ├── toMessageV1.test.ts
│ │ │ │ │ └── toMessageV1.ts
│ │ │ │ ├── pattern.ts
│ │ │ │ ├── settings.test-d.ts
│ │ │ │ ├── settings.test.ts
│ │ │ │ └── settings.ts
│ │ │ ├── lix
│ │ │ │ └── index.ts
│ │ │ ├── migrations
│ │ │ │ └── v2
│ │ │ │ │ ├── createMessageV1.ts
│ │ │ │ │ ├── withLanguageTagToLocaleMigration.test.ts
│ │ │ │ │ └── withLanguageTagToLocaleMigration.ts
│ │ │ ├── plugin
│ │ │ │ ├── cache.test.ts
│ │ │ │ ├── cache.ts
│ │ │ │ ├── errors.ts
│ │ │ │ ├── importPlugins.test.ts
│ │ │ │ ├── importPlugins.ts
│ │ │ │ ├── meta
│ │ │ │ │ └── ideExtension.ts
│ │ │ │ └── schema.ts
│ │ │ ├── project
│ │ │ │ ├── api.ts
│ │ │ │ ├── loadProject.test.ts
│ │ │ │ ├── loadProject.ts
│ │ │ │ ├── loadProjectFromDirectory.test.ts
│ │ │ │ ├── loadProjectFromDirectory.ts
│ │ │ │ ├── loadProjectInMemory.test.ts
│ │ │ │ ├── loadProjectInMemory.ts
│ │ │ │ ├── maybeCaptureTelemetry.test.ts
│ │ │ │ ├── maybeCaptureTelemetry.ts
│ │ │ │ ├── newProject.test.ts
│ │ │ │ ├── newProject.ts
│ │ │ │ ├── saveProjectToDirectory.test.ts
│ │ │ │ └── saveProjectToDirectory.ts
│ │ │ ├── query-utilities
│ │ │ │ ├── index.ts
│ │ │ │ ├── insertBundleNested.ts
│ │ │ │ ├── selectBundleNested.ts
│ │ │ │ ├── updateBundleNested.ts
│ │ │ │ └── upsertBundleNested.ts
│ │ │ ├── schema-definitions
│ │ │ │ ├── bundle.test.ts
│ │ │ │ ├── bundle.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── message.test.ts
│ │ │ │ ├── message.ts
│ │ │ │ ├── variant.test.ts
│ │ │ │ └── variant.ts
│ │ │ ├── services
│ │ │ │ ├── env-variables
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── createIndexFile.js
│ │ │ │ │ └── index.d.ts
│ │ │ │ └── telemetry
│ │ │ │ │ ├── capture.test.ts
│ │ │ │ │ └── capture.ts
│ │ │ └── utilities
│ │ │ │ ├── detectJsonFormatting.test.ts
│ │ │ │ └── detectJsonFormatting.ts
│ │ ├── tsconfig.json
│ │ └── vitest.config.ts
│ ├── server
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ │ └── main.ts
│ │ └── tsconfig.json
│ ├── sherlock
│ │ ├── .gitignore
│ │ ├── .prettierrc
│ │ ├── .vscodeignore
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE.md
│ │ ├── MARKETPLACE.md
│ │ ├── README.md
│ │ ├── assets
│ │ │ ├── codicon.css
│ │ │ ├── codicon.ttf
│ │ │ ├── extract-pattern.gif
│ │ │ ├── hide-badge.png
│ │ │ ├── icon-vscode-marketplace.png
│ │ │ ├── icon.png
│ │ │ ├── ide-errors-small.png
│ │ │ ├── ide-errors.png
│ │ │ ├── ide-extension-cover-small.png
│ │ │ ├── ide-extension-cover.png
│ │ │ ├── ide-extension01.png
│ │ │ ├── ide-extension02.png
│ │ │ ├── ide-extension03.png
│ │ │ ├── ide-extract-small.png
│ │ │ ├── ide-extract.png
│ │ │ ├── ide-inline-small.png
│ │ │ ├── ide-inline.png
│ │ │ ├── ide-lint-small.png
│ │ │ ├── ide-lint.png
│ │ │ ├── ide-monorepo-small.png
│ │ │ ├── ide-monorepo.png
│ │ │ ├── ide-start.png
│ │ │ ├── ide-update-small.png
│ │ │ ├── ide-update.png
│ │ │ ├── ide01new.png
│ │ │ ├── ide02new.png
│ │ │ ├── ide03new.png
│ │ │ ├── inlang.png
│ │ │ ├── inline-annotation.png
│ │ │ ├── logo-negative.svg
│ │ │ ├── marketplace
│ │ │ │ ├── cover.jpg
│ │ │ │ └── gallery
│ │ │ │ │ ├── image-1.jpg
│ │ │ │ │ ├── image-2.jpg
│ │ │ │ │ └── image-3.jpg
│ │ │ ├── readme-logo.png
│ │ │ ├── settings-view.css
│ │ │ ├── sherlock-cover-small.png
│ │ │ ├── sherlock-errors.png
│ │ │ ├── sherlock-logo.png
│ │ │ ├── sherlock-monorepo.png
│ │ │ ├── sherlock-start.png
│ │ │ ├── sherlock-update.png
│ │ │ ├── sherlock-vscode-logo.svg
│ │ │ ├── styles.css
│ │ │ ├── vs-code-extension-header.jpg
│ │ │ └── vscode-install-badge.svg
│ │ ├── build.js
│ │ ├── docs
│ │ │ ├── _switch_to_sherlock.md
│ │ │ ├── _video-tour-notes.md
│ │ │ ├── customization.md
│ │ │ ├── quick-start.md
│ │ │ ├── supported-i18n-libraries.md
│ │ │ └── video-tour.md
│ │ ├── marketplace-manifest.json
│ │ ├── package.json
│ │ ├── publish-openvsx.js
│ │ ├── src
│ │ │ ├── actions
│ │ │ │ └── extractMessage.ts
│ │ │ ├── commands
│ │ │ │ ├── copyError.test.ts
│ │ │ │ ├── copyError.ts
│ │ │ │ ├── createMessage.test.ts
│ │ │ │ ├── createMessage.ts
│ │ │ │ ├── editMessage.test.ts
│ │ │ │ ├── editMessage.ts
│ │ │ │ ├── extractMessage.test.ts
│ │ │ │ ├── extractMessage.ts
│ │ │ │ ├── jumpToPosition.test.ts
│ │ │ │ ├── jumpToPosition.ts
│ │ │ │ ├── machineTranslate.test.ts
│ │ │ │ ├── machineTranslate.ts
│ │ │ │ ├── openEditorView.ts
│ │ │ │ ├── openInFink.test.ts
│ │ │ │ ├── openInFink.ts
│ │ │ │ ├── openProject.test.ts
│ │ │ │ ├── openProject.ts
│ │ │ │ ├── openSettingsFile.test.ts
│ │ │ │ ├── openSettingsFile.ts
│ │ │ │ ├── openSettingsView.ts
│ │ │ │ ├── previewLocaleCommand.test.ts
│ │ │ │ ├── previewLocaleCommand.ts
│ │ │ │ ├── reloadProject.ts
│ │ │ │ ├── toggleInlineAnnotation.test.ts
│ │ │ │ └── toggleInlineAnnotation.ts
│ │ │ ├── configuration.test.ts
│ │ │ ├── configuration.ts
│ │ │ ├── decorations
│ │ │ │ ├── contextTooltip.ts
│ │ │ │ └── messagePreview.ts
│ │ │ ├── diagnostics
│ │ │ │ ├── lintRuleResolver.test.ts
│ │ │ │ ├── lintRuleResolver.ts
│ │ │ │ └── linterDiagnostics.ts
│ │ │ ├── main.ts
│ │ │ ├── package.json.test.ts
│ │ │ ├── services
│ │ │ │ ├── env-variables
│ │ │ │ │ └── index.ts
│ │ │ │ ├── error-monitoring
│ │ │ │ │ ├── implementation.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── telemetry
│ │ │ │ │ ├── events.ts
│ │ │ │ │ └── index.ts
│ │ │ └── utilities
│ │ │ │ ├── editor
│ │ │ │ ├── editorView.test.ts
│ │ │ │ ├── editorView.ts
│ │ │ │ ├── helper
│ │ │ │ │ ├── createMessage.ts
│ │ │ │ │ ├── deleteBundleNested.ts
│ │ │ │ │ ├── deleteVariant.ts
│ │ │ │ │ ├── getNonce.ts
│ │ │ │ │ ├── getUri.ts
│ │ │ │ │ └── handleBundleUpdate.ts
│ │ │ │ └── sherlock-editor-app
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── CHANGELOG.md
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── eslint.config.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── package.json
│ │ │ │ │ ├── public
│ │ │ │ │ └── vite.svg
│ │ │ │ │ ├── src
│ │ │ │ │ ├── App.css
│ │ │ │ │ ├── App.tsx
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── react.svg
│ │ │ │ │ ├── components
│ │ │ │ │ │ └── Editor.tsx
│ │ │ │ │ ├── main.tsx
│ │ │ │ │ ├── utils
│ │ │ │ │ │ └── vscode.ts
│ │ │ │ │ └── vite-env.d.ts
│ │ │ │ │ ├── tsconfig.app.json
│ │ │ │ │ ├── tsconfig.json
│ │ │ │ │ ├── tsconfig.node.json
│ │ │ │ │ └── vite.config.ts
│ │ │ │ ├── errors
│ │ │ │ ├── errors.test.ts
│ │ │ │ └── errors.ts
│ │ │ │ ├── fs
│ │ │ │ ├── createFileSystemMapper.test.ts
│ │ │ │ ├── createFileSystemMapper.ts
│ │ │ │ └── experimental
│ │ │ │ │ └── directMessageHandler.ts
│ │ │ │ ├── getting-started
│ │ │ │ ├── createNewProjectHandler.test.ts
│ │ │ │ ├── createNewProjectHandler.ts
│ │ │ │ ├── gettingStarted.test.ts
│ │ │ │ └── gettingStarted.ts
│ │ │ │ ├── helper.ts
│ │ │ │ ├── lint-rules
│ │ │ │ ├── lintRules.test.ts
│ │ │ │ └── lintRules.ts
│ │ │ │ ├── locale
│ │ │ │ ├── getPreviewLocale.test.ts
│ │ │ │ └── getPreviewLocale.ts
│ │ │ │ ├── logger.ts
│ │ │ │ ├── messages
│ │ │ │ ├── isQuoted.test.ts
│ │ │ │ ├── isQuoted.ts
│ │ │ │ ├── messages.test.ts
│ │ │ │ ├── messages.ts
│ │ │ │ ├── msg.test.ts
│ │ │ │ ├── msg.ts
│ │ │ │ ├── query.test.ts
│ │ │ │ ├── query.ts
│ │ │ │ ├── resolveEscapedCharacters.test.ts
│ │ │ │ └── resolveEscapedCharacters.ts
│ │ │ │ ├── project
│ │ │ │ ├── closestInlangProject.test.ts
│ │ │ │ ├── closestInlangProject.ts
│ │ │ │ ├── project.test.ts
│ │ │ │ └── project.ts
│ │ │ │ ├── recommendation
│ │ │ │ ├── recommendation.test.ts
│ │ │ │ └── recommendation.ts
│ │ │ │ ├── settings
│ │ │ │ ├── getUserId.test.ts
│ │ │ │ ├── getUserId.ts
│ │ │ │ ├── index.test.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── settingsView.test.ts
│ │ │ │ ├── settingsView.ts
│ │ │ │ ├── statusBar.test.ts
│ │ │ │ └── statusBar.ts
│ │ │ │ ├── state.ts
│ │ │ │ ├── utils.test.ts
│ │ │ │ └── utils.ts
│ │ ├── test
│ │ │ ├── mocks
│ │ │ │ └── ci-test-repo.json
│ │ │ ├── specs
│ │ │ │ ├── commands
│ │ │ │ │ └── extractMessage.draft.ts
│ │ │ │ └── test-environment.e2e.test.ts
│ │ │ ├── tsconfig.json
│ │ │ └── wdio.conf.ts
│ │ ├── tsconfig.json
│ │ └── vitest.config.ts
│ ├── telemetry-proxy-parrot
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ │ └── main.ts
│ │ └── tsconfig.json
│ ├── telemetry-proxy
│ │ ├── .prettierrc
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ │ └── main.ts
│ │ └── tsconfig.json
│ ├── templates
│ │ ├── .eslintrc.json
│ │ ├── .gitignore
│ │ └── plugin
│ │ │ ├── .gitignore
│ │ │ ├── .prettierrc
│ │ │ ├── .vscode
│ │ │ └── extensions.json
│ │ │ ├── marketplace-manifest.json
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ ├── index.ts
│ │ │ ├── plugin.test.ts
│ │ │ └── plugin.ts
│ │ │ └── tsconfig.json
│ ├── ui-components
│ │ ├── editor-component
│ │ │ ├── .prettierrc
│ │ │ ├── .storybook
│ │ │ │ ├── main.js
│ │ │ │ └── preview.js
│ │ │ ├── CHANGELOG.md
│ │ │ ├── README.md
│ │ │ ├── package.json
│ │ │ ├── rollup.config.js
│ │ │ ├── src
│ │ │ │ ├── helper
│ │ │ │ │ ├── event.ts
│ │ │ │ │ ├── overridePrimitiveColors.test.ts
│ │ │ │ │ ├── overridePrimitiveColors.ts
│ │ │ │ │ ├── patternToString.test.ts
│ │ │ │ │ ├── patternToString.ts
│ │ │ │ │ ├── stringToPattern.test.ts
│ │ │ │ │ └── stringToPattern.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── inlang-bundle.mdx
│ │ │ │ ├── mock
│ │ │ │ │ ├── lint.ts
│ │ │ │ │ ├── messageBundle.ts
│ │ │ │ │ ├── pluralBundle.ts
│ │ │ │ │ ├── settings.ts
│ │ │ │ │ └── updateEntities.ts
│ │ │ │ ├── stories
│ │ │ │ │ ├── actions
│ │ │ │ │ │ ├── add-selector
│ │ │ │ │ │ │ ├── inlang-add-selector.mdx
│ │ │ │ │ │ │ ├── inlang-add-selector.stories.ts
│ │ │ │ │ │ │ └── inlang-add-selector.ts
│ │ │ │ │ │ ├── add-variable
│ │ │ │ │ │ │ ├── inlang-add-variable.mdx
│ │ │ │ │ │ │ ├── inlang-add-variable.stories.ts
│ │ │ │ │ │ │ └── inlang-add-variable.ts
│ │ │ │ │ │ └── bundle-action
│ │ │ │ │ │ │ ├── inlang-bundle-action.mdx
│ │ │ │ │ │ │ ├── inlang-bundle-action.stories.ts
│ │ │ │ │ │ │ └── inlang-bundle-action.ts
│ │ │ │ │ ├── inlang-bundle.mdx
│ │ │ │ │ ├── inlang-bundle.stories.ts
│ │ │ │ │ ├── inlang-bundle.ts
│ │ │ │ │ ├── message
│ │ │ │ │ │ ├── inlang-message.mdx
│ │ │ │ │ │ ├── inlang-message.stories.ts
│ │ │ │ │ │ └── inlang-message.ts
│ │ │ │ │ ├── pattern-editor
│ │ │ │ │ │ ├── inlang-pattern-editor.mdx
│ │ │ │ │ │ ├── inlang-pattern-editor.stories.ts
│ │ │ │ │ │ └── inlang-pattern-editor.ts
│ │ │ │ │ └── variant
│ │ │ │ │ │ ├── inlang-variant.mdx
│ │ │ │ │ │ ├── inlang-variant.stories.ts
│ │ │ │ │ │ └── inlang-variant.ts
│ │ │ │ └── styling
│ │ │ │ │ ├── base.ts
│ │ │ │ │ └── preview.css
│ │ │ └── tsconfig.json
│ │ └── settings-component
│ │ │ ├── .prettierrc
│ │ │ ├── .storybook
│ │ │ ├── main.js
│ │ │ └── preview.js
│ │ │ ├── CHANGELOG.md
│ │ │ ├── README.md
│ │ │ ├── package.json
│ │ │ ├── rollup.config.js
│ │ │ ├── src
│ │ │ ├── helper
│ │ │ │ ├── checkRequired.test.ts
│ │ │ │ ├── checkRequired.ts
│ │ │ │ ├── overridePrimitiveColors.test.ts
│ │ │ │ └── overridePrimitiveColors.ts
│ │ │ ├── index.ts
│ │ │ ├── inlang-settings.mdx
│ │ │ ├── mock
│ │ │ │ └── project.ts
│ │ │ ├── stories
│ │ │ │ ├── field-header.stories.ts
│ │ │ │ ├── field-header.ts
│ │ │ │ ├── inlang-settings.stories.ts
│ │ │ │ ├── inlang-settings.ts
│ │ │ │ └── input-fields
│ │ │ │ │ ├── array
│ │ │ │ │ ├── array-input.stories.ts
│ │ │ │ │ ├── array-input.ts
│ │ │ │ │ ├── default-array-input.ts
│ │ │ │ │ ├── locale-input.ts
│ │ │ │ │ └── reference-pattern-input.ts
│ │ │ │ │ ├── general-input.ts
│ │ │ │ │ ├── object
│ │ │ │ │ ├── default-object-input.ts
│ │ │ │ │ ├── lint-rule-level-object-input.ts
│ │ │ │ │ ├── object-input.ts
│ │ │ │ │ └── object.input.stories.ts
│ │ │ │ │ ├── string
│ │ │ │ │ ├── string-input.stories.ts
│ │ │ │ │ └── string-input.ts
│ │ │ │ │ └── union
│ │ │ │ │ └── path-pattern-input.ts
│ │ │ └── styling
│ │ │ │ ├── base.ts
│ │ │ │ └── preview.css
│ │ │ └── tsconfig.json
│ └── website
│ │ ├── .gitignore
│ │ ├── .prettierrc
│ │ ├── CHANGELOG.md
│ │ ├── README.md
│ │ ├── messages
│ │ ├── de.json
│ │ ├── en.json
│ │ ├── es.json
│ │ ├── fr.json
│ │ ├── it.json
│ │ ├── pt-BR.json
│ │ ├── sk.json
│ │ └── zh.json
│ │ ├── package.json
│ │ ├── postcss.config.cjs
│ │ ├── public
│ │ ├── favicon
│ │ │ ├── README.md
│ │ │ ├── android-chrome-192x192.png
│ │ │ ├── android-chrome-256x256.png
│ │ │ ├── apple-touch-icon.png
│ │ │ ├── browserconfig.xml
│ │ │ ├── favicon-16x16.png
│ │ │ ├── favicon-32x32.png
│ │ │ ├── favicon.ico
│ │ │ ├── mstile-150x150.png
│ │ │ ├── safari-pinned-tab.svg
│ │ │ └── site.webmanifest
│ │ ├── images
│ │ │ ├── badge-cover-landingpage.png
│ │ │ ├── cli-cover-landingpage.png
│ │ │ ├── cli-logo-landingpage.png
│ │ │ ├── ecosystem-inlang.jpg
│ │ │ ├── fink-cover-landingpage.png
│ │ │ ├── fink-cover.png
│ │ │ ├── go-global-mockup.png
│ │ │ ├── hero-cover-updated.png
│ │ │ ├── hero-cover.png
│ │ │ ├── ide-cover.png
│ │ │ ├── ide-extension-cover-landingpage.png
│ │ │ ├── inlang-advanced.png
│ │ │ ├── inlang-header-image.png
│ │ │ ├── inlang-marketplace-image.jpg
│ │ │ ├── inlang-social-image.jpg
│ │ │ ├── inlang.svg
│ │ │ ├── lint-rule-covers
│ │ │ │ ├── lint-rule-cover-brand.png
│ │ │ │ ├── lint-rule-cover-camel-case.png
│ │ │ │ ├── lint-rule-cover-missing-message.png
│ │ │ │ └── lint-rule-cover-outdated.png
│ │ │ ├── lintRulesImage.png
│ │ │ ├── lix-automation-cover.png
│ │ │ ├── lix-review-cover.png
│ │ │ ├── lix-transparent.webp
│ │ │ ├── lixCoverV01.webp
│ │ │ ├── lixCoverV02.webp
│ │ │ ├── lixProcess.png
│ │ │ ├── lixProcessBig.png
│ │ │ ├── paraglide-cover-landingpage.png
│ │ │ ├── paraglide-logo.webp
│ │ │ ├── paraglideNoBg.png
│ │ │ ├── paraglidePage.png
│ │ │ ├── parrot-cover-landingpage.png
│ │ │ ├── parrot-cover.png
│ │ │ ├── pluginHeaderImage.png
│ │ │ └── svelte-header-image.png
│ │ └── opengraph
│ │ │ ├── generated
│ │ │ ├── architecture
│ │ │ │ └── architecture.jpg
│ │ │ ├── build-app
│ │ │ │ └── develop_app.jpg
│ │ │ ├── concept
│ │ │ │ ├── app.jpg
│ │ │ │ ├── language_tag.jpg
│ │ │ │ ├── library.jpg
│ │ │ │ ├── message.jpg
│ │ │ │ └── project.jpg
│ │ │ ├── lint-rule
│ │ │ │ └── lint_rule.jpg
│ │ │ ├── plugin
│ │ │ │ ├── api.jpg
│ │ │ │ ├── api_introduction.jpg
│ │ │ │ ├── build_a_plugin.jpg
│ │ │ │ ├── plugin.jpg
│ │ │ │ └── what_is_a_plugin.jpg
│ │ │ ├── publish-guide
│ │ │ │ └── publish_guide.jpg
│ │ │ └── publish-to-marketplace
│ │ │ │ └── publish_marketplace.jpg
│ │ │ ├── inlang-documentation-image.jpg
│ │ │ ├── inlang-search-image.jpg
│ │ │ └── inlang-social-image.jpg
│ │ ├── scripts
│ │ ├── README.md
│ │ ├── generateOG.js
│ │ └── generateSitemap.js
│ │ ├── src
│ │ ├── README.md
│ │ ├── app.d.ts
│ │ ├── directives
│ │ │ ├── README.md
│ │ │ └── clickOutside.ts
│ │ ├── interface
│ │ │ ├── README.md
│ │ │ ├── components
│ │ │ │ ├── Banner.tsx
│ │ │ │ ├── Captcha.tsx
│ │ │ │ ├── Card.tsx
│ │ │ │ ├── Chip.tsx
│ │ │ │ ├── Copy.tsx
│ │ │ │ ├── GetHelp.tsx
│ │ │ │ ├── Highlight.tsx
│ │ │ │ ├── Icon.tsx
│ │ │ │ ├── NewsletterForm.tsx
│ │ │ │ ├── OnClient.tsx
│ │ │ │ ├── RepositoryCard.tsx
│ │ │ │ ├── Toast.tsx
│ │ │ │ ├── TooltipDefinition.tsx
│ │ │ │ ├── doc-header.tsx
│ │ │ │ └── doc-layout-solid
│ │ │ │ │ ├── doc-layout-meta.tsx
│ │ │ │ │ ├── doc-layout-nav.tsx
│ │ │ │ │ └── doc-layout.tsx
│ │ │ ├── custom-icons
│ │ │ │ ├── pluginIcon.tsx
│ │ │ │ └── subcategoryIcon.tsx
│ │ │ ├── marketplace
│ │ │ │ ├── CategoryTabs.tsx
│ │ │ │ ├── DeprecationBanner.tsx
│ │ │ │ ├── MarketplaceHeader.tsx
│ │ │ │ ├── MarketplaceLayout.tsx
│ │ │ │ ├── SubcategoryPills.tsx
│ │ │ │ ├── categoryHeaders
│ │ │ │ │ ├── cards
│ │ │ │ │ │ ├── astro.tsx
│ │ │ │ │ │ ├── generic.tsx
│ │ │ │ │ │ ├── lix.tsx
│ │ │ │ │ │ ├── nextjs.tsx
│ │ │ │ │ │ ├── paraglide.tsx
│ │ │ │ │ │ ├── remix.tsx
│ │ │ │ │ │ └── svelte.tsx
│ │ │ │ │ ├── categoryHeros
│ │ │ │ │ │ └── appHeader.tsx
│ │ │ │ │ ├── titleSection.tsx
│ │ │ │ │ └── toast
│ │ │ │ │ │ ├── lintRules.tsx
│ │ │ │ │ │ ├── plugins.tsx
│ │ │ │ │ │ └── stacks.tsx
│ │ │ │ └── helper
│ │ │ │ │ └── utilities.ts
│ │ │ └── notification
│ │ │ │ ├── InlineNotification.tsx
│ │ │ │ └── README.md
│ │ ├── pages
│ │ │ ├── _error
│ │ │ │ └── +Page.tsx
│ │ │ ├── blog
│ │ │ │ ├── +Page.tsx
│ │ │ │ └── @id
│ │ │ │ │ ├── +Page.tsx
│ │ │ │ │ ├── +onBeforeRender.tsx
│ │ │ │ │ └── Navigation.tsx
│ │ │ ├── c
│ │ │ │ └── @category
│ │ │ │ │ ├── +Page.tsx
│ │ │ │ │ └── +onBeforeRender.tsx
│ │ │ ├── editor
│ │ │ │ ├── +Page.tsx
│ │ │ │ ├── +onBeforeRender.tsx
│ │ │ │ └── @host
│ │ │ │ │ ├── +Page.tsx
│ │ │ │ │ ├── +onBeforeRender.tsx
│ │ │ │ │ └── @owner
│ │ │ │ │ ├── +Page.tsx
│ │ │ │ │ ├── +onBeforeRender.tsx
│ │ │ │ │ └── @repository
│ │ │ │ │ ├── +Page.tsx
│ │ │ │ │ └── +onBeforeRender.tsx
│ │ │ ├── g
│ │ │ │ ├── +Page.tsx
│ │ │ │ ├── +onBeforeRender.tsx
│ │ │ │ ├── @uid
│ │ │ │ │ ├── +Page.tsx
│ │ │ │ │ ├── +onBeforeRender.tsx
│ │ │ │ │ └── @id
│ │ │ │ │ │ ├── +Page.tsx
│ │ │ │ │ │ └── +onBeforeRender.tsx
│ │ │ │ └── utilities.ts
│ │ │ ├── index
│ │ │ │ ├── +Page.tsx
│ │ │ │ ├── Footer.tsx
│ │ │ │ ├── LanguagePicker.tsx
│ │ │ │ ├── assets
│ │ │ │ │ ├── cli-image.png
│ │ │ │ │ ├── collaboration.png
│ │ │ │ │ ├── editor-image.png
│ │ │ │ │ ├── editor-video.mp4
│ │ │ │ │ ├── extension-video.mp4
│ │ │ │ │ ├── fileformatbenefits.png
│ │ │ │ │ ├── interop.png
│ │ │ │ │ ├── landingpage.md
│ │ │ │ │ └── tech-stack-icon.svg
│ │ │ │ ├── components
│ │ │ │ │ ├── Button.tsx
│ │ │ │ │ ├── CardGradient.tsx
│ │ │ │ │ ├── CardTag.tsx
│ │ │ │ │ ├── CredibilityTag.tsx
│ │ │ │ │ ├── FeatureGitTitle.tsx
│ │ │ │ │ └── sectionLayout.tsx
│ │ │ │ ├── custom_section
│ │ │ │ │ ├── Extend
│ │ │ │ │ │ ├── LintRules.tsx
│ │ │ │ │ │ ├── Plugins.tsx
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── Features.tsx
│ │ │ │ │ ├── Guides.tsx
│ │ │ │ │ ├── HeroSearch.tsx
│ │ │ │ │ ├── Lix
│ │ │ │ │ │ ├── Card.tsx
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── Personas
│ │ │ │ │ │ ├── Designer.tsx
│ │ │ │ │ │ ├── Developer.tsx
│ │ │ │ │ │ ├── Translator.tsx
│ │ │ │ │ │ └── index.tsx
│ │ │ │ │ └── Stack.tsx
│ │ │ │ ├── github-markdown.module.css
│ │ │ │ └── old_sections
│ │ │ │ │ ├── 01-hero
│ │ │ │ │ ├── Slider.tsx
│ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── categories
│ │ │ │ │ │ │ ├── app.tsx
│ │ │ │ │ │ │ ├── documents.tsx
│ │ │ │ │ │ │ ├── email.tsx
│ │ │ │ │ │ │ ├── payments.tsx
│ │ │ │ │ │ │ └── website.tsx
│ │ │ │ │ │ └── logos
│ │ │ │ │ │ │ ├── appflowy.tsx
│ │ │ │ │ │ │ ├── clacom.tsx
│ │ │ │ │ │ │ ├── jitsi.tsx
│ │ │ │ │ │ │ ├── listmonk.tsx
│ │ │ │ │ │ │ └── openAssistant.tsx
│ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── 02-lix
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── images
│ │ │ │ │ │ │ ├── Automation.tsx
│ │ │ │ │ │ │ ├── Collaboration.tsx
│ │ │ │ │ │ │ ├── LixGraph.tsx
│ │ │ │ │ │ │ ├── LixGraphMobile.tsx
│ │ │ │ │ │ │ ├── Review.tsx
│ │ │ │ │ │ │ └── Rules.tsx
│ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── 03-marketplace
│ │ │ │ │ ├── assets
│ │ │ │ │ │ ├── categories
│ │ │ │ │ │ │ ├── app.tsx
│ │ │ │ │ │ │ ├── documents.tsx
│ │ │ │ │ │ │ ├── payments.tsx
│ │ │ │ │ │ │ └── website.tsx
│ │ │ │ │ │ ├── itemslist.tsx
│ │ │ │ │ │ └── missingpart.tsx
│ │ │ │ │ └── index.tsx
│ │ │ │ │ ├── 04-qualitychecks
│ │ │ │ │ ├── assets
│ │ │ │ │ │ └── autoresolve.tsx
│ │ │ │ │ └── index.tsx
│ │ │ │ │ └── Hero.tsx
│ │ │ ├── m
│ │ │ │ ├── +Page.tsx
│ │ │ │ ├── +onBeforeRender.ts
│ │ │ │ ├── +route.ts
│ │ │ │ ├── helper
│ │ │ │ │ ├── getGithubLink.ts
│ │ │ │ │ ├── getRedirectPath.test.ts
│ │ │ │ │ └── getRedirectPath.ts
│ │ │ │ └── utilities.ts
│ │ │ ├── marketplace
│ │ │ │ ├── +Page.tsx
│ │ │ │ ├── +onBeforeRender.tsx
│ │ │ │ └── @id
│ │ │ │ │ ├── +Page.tsx
│ │ │ │ │ └── +onBeforeRender.tsx
│ │ │ ├── not-found
│ │ │ │ └── +Page.tsx
│ │ │ └── search
│ │ │ │ ├── +Page.tsx
│ │ │ │ └── +onBeforeRender.tsx
│ │ ├── renderer
│ │ │ ├── +Root.tsx
│ │ │ ├── +config.h.ts
│ │ │ ├── +onBeforeRoute.ts
│ │ │ ├── +onPrerenderStart.ts
│ │ │ ├── +onRenderClient.tsx
│ │ │ ├── +onRenderHtml.tsx
│ │ │ ├── Link.tsx
│ │ │ ├── README.md
│ │ │ ├── app.css
│ │ │ ├── renderLocales.ts
│ │ │ ├── state.ts
│ │ │ └── types.ts
│ │ ├── server
│ │ │ ├── main.ts
│ │ │ └── router.ts
│ │ └── services
│ │ │ ├── README.md
│ │ │ ├── assert-usage
│ │ │ ├── README.md
│ │ │ ├── index.ts
│ │ │ └── src
│ │ │ │ └── implementation.ts
│ │ │ ├── auth
│ │ │ ├── README.md
│ │ │ ├── index.ts
│ │ │ └── src
│ │ │ │ ├── components
│ │ │ │ ├── ForkPermissionDialog.tsx
│ │ │ │ ├── PushPermissionDialog.tsx
│ │ │ │ └── SignInDialog.tsx
│ │ │ │ ├── onSignOut.ts
│ │ │ │ └── pages
│ │ │ │ └── auth-callback
│ │ │ │ ├── +Page.tsx
│ │ │ │ └── +route.ts
│ │ │ ├── i18n
│ │ │ └── routing.ts
│ │ │ └── local-storage
│ │ │ ├── README.md
│ │ │ ├── index.ts
│ │ │ └── src
│ │ │ ├── LocalStorageProvider.tsx
│ │ │ └── schema.ts
│ │ ├── tailwind-color-plugin
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── color-system
│ │ │ │ ├── README.md
│ │ │ │ ├── generateTokens.cts
│ │ │ │ ├── tailwindPlugin.cts
│ │ │ │ └── types
│ │ │ │ │ ├── color.cts
│ │ │ │ │ ├── colorTokens.cts
│ │ │ │ │ └── config.cts
│ │ │ ├── components
│ │ │ │ ├── README.md
│ │ │ │ ├── forEachColorToken.cts
│ │ │ │ ├── link
│ │ │ │ │ └── index.cts
│ │ │ │ └── tailwindPlugin.cts
│ │ │ └── tailwindPlugins.cts
│ │ └── tsconfig.json
│ │ ├── tailwind.config.cjs
│ │ ├── tsconfig.json
│ │ ├── vite.config.ts
│ │ └── website.inlang
│ │ ├── .gitignore
│ │ ├── project_id
│ │ └── settings.json
└── rfcs
│ ├── @inlang_core_lint
│ ├── RFC.md
│ ├── experiment-1.ts
│ ├── experiment-2.ts
│ └── experiment-3.ts
│ ├── README.md
│ ├── core-architecture
│ ├── RFC.md
│ └── assets
│ │ ├── 001-editor.png
│ │ ├── 001-git-based-architecture.png
│ │ └── 001-ide-extension.gif
│ ├── git-sdk-requirements
│ ├── RFC.md
│ └── real-time-collaboration.png
│ ├── message-first-architecture
│ └── RFC.md
│ ├── plugin-api
│ ├── RFC.md
│ ├── experiment-1.ts
│ ├── experiment-2.ts
│ ├── experiment-3.ts
│ └── experiment-4.ts
│ ├── sdk-js
│ └── RFC.md
│ └── tech-stack
│ ├── RFC.md
│ └── assets
│ ├── 002-embedded-architecture.png
│ ├── 002-embedded-separated-legend.png
│ ├── 002-monolith-architecture.png
│ └── 002-separated-architecture.png
├── nx.json
├── package.json
├── packages
├── csv-app
│ ├── .gitignore
│ ├── .prettierrc.json
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── eslint.config.js
│ ├── index.html
│ ├── package.json
│ ├── public
│ │ ├── auth-dialog-image.png
│ │ ├── branch-icon.svg
│ │ ├── cap-table
│ │ │ ├── changes.json
│ │ │ ├── commits.json
│ │ │ └── latestFile.csv
│ │ ├── captable-cover-big.png
│ │ ├── captable-cover-small.png
│ │ ├── discord-icon.svg
│ │ ├── github-icon.svg
│ │ ├── lix.svg
│ │ └── x-icon.svg
│ ├── src
│ │ ├── components
│ │ │ ├── CellGraph.tsx
│ │ │ ├── ChangeSet.tsx
│ │ │ ├── ConflictSet.tsx
│ │ │ ├── CustomLink.tsx
│ │ │ ├── RowDiff.tsx
│ │ │ ├── TableEditor.tsx
│ │ │ └── UserAuthDialog.tsx
│ │ ├── helper
│ │ │ ├── demo-lix-file
│ │ │ │ ├── cap-table.csv
│ │ │ │ ├── demoLixFile.ts
│ │ │ │ ├── email-newsletter.csv
│ │ │ │ └── minimal.csv
│ │ │ ├── gernerateUserColor
│ │ │ │ └── generateUserColor.ts
│ │ │ ├── saveLixToOpfs.ts
│ │ │ └── timeAgo.ts
│ │ ├── layouts
│ │ │ ├── OpenFileLayout.tsx
│ │ │ └── RootLayout.tsx
│ │ ├── main.tsx
│ │ ├── routes.tsx
│ │ ├── routes
│ │ │ ├── changes
│ │ │ │ └── Page.tsx
│ │ │ ├── conflicts
│ │ │ │ └── Page.tsx
│ │ │ ├── editor
│ │ │ │ └── Page.tsx
│ │ │ └── index
│ │ │ │ ├── DemoCard.tsx
│ │ │ │ ├── Dropzone.tsx
│ │ │ │ ├── FileExplorer.tsx
│ │ │ │ └── Page.tsx
│ │ ├── state-active-file.ts
│ │ ├── state.ts
│ │ ├── style.css
│ │ └── vite-env.d.ts
│ ├── tsconfig.json
│ └── vite.config.ts
├── flashtype
│ ├── .gitignore
│ ├── .infisical.json
│ ├── .oxlintrc.json
│ ├── .prettierrc.json
│ ├── LICENSE
│ ├── README.md
│ ├── components.json
│ ├── index.html
│ ├── package.json
│ ├── public
│ │ ├── icons
│ │ │ └── flashtype
│ │ │ │ ├── flashtype-favicon-rounded.svg
│ │ │ │ ├── flashtype-favicon.svg
│ │ │ │ ├── flashtype-icon-circle.svg
│ │ │ │ ├── flashtype-icon-maskable.svg
│ │ │ │ └── safari-pinned-tab.svg
│ │ ├── manifest.webmanifest
│ │ └── sw.js
│ ├── setup-tests.ts
│ ├── src
│ │ ├── app
│ │ │ ├── central-panel.test.tsx
│ │ │ ├── central-panel.tsx
│ │ │ ├── import-file.test.ts
│ │ │ ├── import-file.ts
│ │ │ ├── landing-screen.tsx
│ │ │ ├── layout-shell.tsx
│ │ │ ├── panel-utils.test.ts
│ │ │ ├── panel-utils.ts
│ │ │ ├── panel-v2.test.tsx
│ │ │ ├── panel-v2.tsx
│ │ │ ├── panel.module.css
│ │ │ ├── pending-view.test.ts
│ │ │ ├── pending-view.ts
│ │ │ ├── react-view.tsx
│ │ │ ├── side-panel.test.tsx
│ │ │ ├── side-panel.tsx
│ │ │ ├── status-bar.tsx
│ │ │ ├── theme.css
│ │ │ ├── top-bar
│ │ │ │ ├── flashtype-menu.tsx
│ │ │ │ ├── index.tsx
│ │ │ │ ├── version-switcher.test.tsx
│ │ │ │ └── version-switcher.tsx
│ │ │ ├── types.ts
│ │ │ ├── ui-state.ts
│ │ │ ├── view-context.test.tsx
│ │ │ ├── view-context.ts
│ │ │ ├── view-host-registry.tsx
│ │ │ ├── view-instance-helpers.ts
│ │ │ ├── view-registry.tsx
│ │ │ └── welcome-screen.tsx
│ │ ├── components
│ │ │ ├── diff-indicator.test.tsx
│ │ │ ├── diff-indicator.tsx
│ │ │ ├── diff.tsx
│ │ │ ├── keep-previous-suspense.tsx
│ │ │ └── ui
│ │ │ │ ├── action-button.tsx
│ │ │ │ ├── avatar.tsx
│ │ │ │ ├── breadcrumb.tsx
│ │ │ │ ├── button.tsx
│ │ │ │ ├── collapsible.tsx
│ │ │ │ ├── command.tsx
│ │ │ │ ├── dropdown-menu.tsx
│ │ │ │ ├── input.tsx
│ │ │ │ ├── popover.tsx
│ │ │ │ ├── separator.tsx
│ │ │ │ ├── sheet.tsx
│ │ │ │ ├── skeleton.tsx
│ │ │ │ └── tooltip.tsx
│ │ ├── env-variables.ts
│ │ ├── hooks
│ │ │ ├── key-value
│ │ │ │ ├── schema.ts
│ │ │ │ ├── use-key-value.test.tsx
│ │ │ │ └── use-key-value.ts
│ │ │ ├── use-clipboard-content.test.ts
│ │ │ ├── use-clipboard-content.ts
│ │ │ └── use-mobile.ts
│ │ ├── index.css
│ │ ├── lib
│ │ │ ├── insert-markdown-schemas.ts
│ │ │ └── utils.ts
│ │ ├── main.error.tsx
│ │ ├── main.tsx
│ │ ├── queries.test.ts
│ │ ├── queries.ts
│ │ ├── seed
│ │ │ ├── AGENTS.md
│ │ │ ├── README.md
│ │ │ ├── changelog.md
│ │ │ ├── index.ts
│ │ │ ├── meeting-notes.md
│ │ │ ├── welcome.md
│ │ │ └── what-is-lix.md
│ │ └── views
│ │ │ ├── agent-view
│ │ │ ├── chat-message-list.tsx
│ │ │ ├── chat-message.tsx
│ │ │ ├── chat-types.ts
│ │ │ ├── commands
│ │ │ │ ├── clear.test.ts
│ │ │ │ ├── clear.ts
│ │ │ │ └── index.ts
│ │ │ ├── components
│ │ │ │ ├── agent-empty-state.tsx
│ │ │ │ ├── change-decision.tsx
│ │ │ │ ├── prompt-composer.test.tsx
│ │ │ │ ├── prompt-composer.tsx
│ │ │ │ └── welcome-screen.tsx
│ │ │ ├── conversation-message.tsx
│ │ │ ├── index.tsx
│ │ │ ├── markdown
│ │ │ │ ├── code-block.tsx
│ │ │ │ └── message-body.tsx
│ │ │ ├── mention-utils.test.ts
│ │ │ ├── mention-utils.ts
│ │ │ ├── menu.test.tsx
│ │ │ ├── menu.tsx
│ │ │ ├── select-file-paths.test.ts
│ │ │ ├── select-file-paths.ts
│ │ │ ├── system-prompt.ts
│ │ │ └── tool-run-list.tsx
│ │ │ ├── checkpoint-view
│ │ │ ├── changed-files-list.test.tsx
│ │ │ ├── changed-files-list.tsx
│ │ │ ├── checkpoint-form.tsx
│ │ │ ├── index.test.tsx
│ │ │ ├── index.tsx
│ │ │ ├── latest-checkpoint.tsx
│ │ │ ├── queries.test.ts
│ │ │ └── queries.ts
│ │ │ ├── commit-view
│ │ │ ├── index.tsx
│ │ │ ├── queries.test.ts
│ │ │ └── queries.ts
│ │ │ ├── diff-view
│ │ │ └── index.tsx
│ │ │ ├── files-view
│ │ │ ├── build-filesystem-tree.test.ts
│ │ │ ├── build-filesystem-tree.ts
│ │ │ ├── file-tree.test.tsx
│ │ │ ├── file-tree.tsx
│ │ │ ├── index.test.tsx
│ │ │ └── index.tsx
│ │ │ ├── history-view
│ │ │ ├── index.test.tsx
│ │ │ └── index.tsx
│ │ │ ├── markdown-view
│ │ │ ├── components
│ │ │ │ ├── formatting-toolbar.test.tsx
│ │ │ │ ├── formatting-toolbar.tsx
│ │ │ │ └── slash-command-menu.tsx
│ │ │ ├── editor
│ │ │ │ ├── assemble-md-ast.test.ts
│ │ │ │ ├── assemble-md-ast.ts
│ │ │ │ ├── block-commands.ts
│ │ │ │ ├── build-markdown-from-editor.ts
│ │ │ │ ├── create-editor.test.ts
│ │ │ │ ├── create-editor.ts
│ │ │ │ ├── editor-context.tsx
│ │ │ │ ├── extensions
│ │ │ │ │ ├── slash-commands.ts
│ │ │ │ │ └── table-navigation.ts
│ │ │ │ ├── handle-paste.test.ts
│ │ │ │ ├── handle-paste.ts
│ │ │ │ ├── tip-tap-editor.test.tsx
│ │ │ │ ├── tip-tap-editor.tsx
│ │ │ │ └── upsert-markdown-file.ts
│ │ │ ├── index.test.tsx
│ │ │ ├── index.tsx
│ │ │ └── style.css
│ │ │ ├── search-view
│ │ │ └── index.tsx
│ │ │ └── tasks-view
│ │ │ └── index.tsx
│ ├── tsconfig.json
│ ├── vite.config.ts
│ ├── vitest.config.ts
│ └── wrangler.json
├── lix
│ ├── agent-sdk
│ │ ├── .gitignore
│ │ ├── .oxlintrc.json
│ │ ├── .prettierrc.json
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── context
│ │ │ │ ├── context-store.test.ts
│ │ │ │ └── context-store.ts
│ │ │ ├── conversation-storage.test.ts
│ │ │ ├── conversation-storage.ts
│ │ │ ├── create-lix-agent.test.ts
│ │ │ ├── create-lix-agent.ts
│ │ │ ├── index.ts
│ │ │ ├── proposal-mode.test.ts
│ │ │ ├── proposal-mode.ts
│ │ │ ├── send-message.test.ts
│ │ │ ├── send-message.ts
│ │ │ ├── summarize-working-changes.test.ts
│ │ │ ├── summarize-working-changes.ts
│ │ │ ├── system-prompt.ts
│ │ │ ├── system
│ │ │ │ ├── build-system-prompt.test.ts
│ │ │ │ └── build-system-prompt.ts
│ │ │ ├── tools
│ │ │ │ ├── delete-file.test.ts
│ │ │ │ ├── delete-file.ts
│ │ │ │ ├── execute-javascript.test.ts
│ │ │ │ ├── execute-javascript.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── list-files.test.ts
│ │ │ │ ├── list-files.ts
│ │ │ │ ├── read-file.test.ts
│ │ │ │ ├── read-file.ts
│ │ │ │ ├── sql-introspect-schema.test.ts
│ │ │ │ ├── sql-introspect-schema.ts
│ │ │ │ ├── sql-select.test.ts
│ │ │ │ ├── sql-select.ts
│ │ │ │ ├── write-file.test.ts
│ │ │ │ └── write-file.ts
│ │ │ └── types.ts
│ │ ├── tsconfig.json
│ │ └── vitest.config.ts
│ ├── docs-restructure-proposal.md
│ ├── docs
│ │ ├── .gitignore
│ │ ├── .prettierrc
│ │ ├── package.json
│ │ ├── postcss.config.cjs
│ │ ├── rspress-plugins
│ │ │ ├── preserve-raw-loader.mjs
│ │ │ ├── remark-mermaid.ts
│ │ │ ├── sync-changelog.ts
│ │ │ ├── sync-plugin-readmes.ts
│ │ │ ├── sync-react-utils-readme.ts
│ │ │ └── typedoc-plugin.ts
│ │ ├── rspress.config.ts
│ │ ├── src
│ │ │ ├── docs
│ │ │ │ ├── architecture.md
│ │ │ │ ├── attribution.mdx
│ │ │ │ ├── change-proposals.mdx
│ │ │ │ ├── comparison-to-git.md
│ │ │ │ ├── components
│ │ │ │ │ ├── Mermaid.tsx
│ │ │ │ │ ├── PluginMetadataCard.tsx
│ │ │ │ │ ├── code-snippet.tsx
│ │ │ │ │ └── landing-page.tsx
│ │ │ │ ├── conversations.md
│ │ │ │ ├── deterministic-mode.md
│ │ │ │ ├── diffs.mdx
│ │ │ │ ├── environment-api.md
│ │ │ │ ├── examples
│ │ │ │ │ ├── attribution.ts
│ │ │ │ │ ├── auto-commit.ts
│ │ │ │ │ ├── change-proposals.ts
│ │ │ │ │ ├── diffs.ts
│ │ │ │ │ ├── examples.test.ts
│ │ │ │ │ ├── getting-started.ts
│ │ │ │ │ ├── history.ts
│ │ │ │ │ ├── restore.ts
│ │ │ │ │ ├── undo-redo.ts
│ │ │ │ │ └── versions.ts
│ │ │ │ ├── filesystem.md
│ │ │ │ ├── getting-started.mdx
│ │ │ │ ├── history.mdx
│ │ │ │ ├── key-value.md
│ │ │ │ ├── labels.md
│ │ │ │ ├── lix-as-file-format.md
│ │ │ │ ├── lix-for-ai-agents.md
│ │ │ │ ├── logging.md
│ │ │ │ ├── metadata.md
│ │ │ │ ├── persistence.md
│ │ │ │ ├── plugins.md
│ │ │ │ ├── react-integration.mdx
│ │ │ │ ├── restore.mdx
│ │ │ │ ├── schemas.md
│ │ │ │ ├── sql-interface.md
│ │ │ │ ├── testing.md
│ │ │ │ ├── undo-redo.mdx
│ │ │ │ ├── validation-rules.md
│ │ │ │ ├── versions.mdx
│ │ │ │ ├── what-is-lix.md
│ │ │ │ └── writer-key.md
│ │ │ ├── index.mdx
│ │ │ ├── plugins
│ │ │ │ ├── index.mdx
│ │ │ │ └── plugin.registry.json
│ │ │ ├── public
│ │ │ │ ├── a vs b.png
│ │ │ │ ├── backend_features_to_files.png
│ │ │ │ ├── blame-what-did-you-change.svg
│ │ │ │ ├── blame.svg
│ │ │ │ ├── change proposal.png
│ │ │ │ ├── change-proposal.svg
│ │ │ │ ├── comments-data-model.svg
│ │ │ │ ├── comments.svg
│ │ │ │ ├── diff.svg
│ │ │ │ ├── diffs-many-types.svg
│ │ │ │ ├── favicon.svg
│ │ │ │ ├── fink2.png
│ │ │ │ ├── flashtype.jpg
│ │ │ │ ├── flashtype.png
│ │ │ │ ├── history.svg
│ │ │ │ ├── icons
│ │ │ │ │ └── python.svg
│ │ │ │ ├── inlang-interop.svg
│ │ │ │ ├── inlang.png
│ │ │ │ ├── lix-features.svg
│ │ │ │ ├── lix.svg
│ │ │ │ ├── logo.svg
│ │ │ │ ├── open_file.png
│ │ │ │ ├── prosemirror.png
│ │ │ │ ├── restore.svg
│ │ │ │ ├── traceability.png
│ │ │ │ ├── undo-redo.svg
│ │ │ │ ├── usecases.svg
│ │ │ │ ├── validation-rules-agent.svg
│ │ │ │ ├── validation-rules-cross-team.png
│ │ │ │ ├── validation-rules.svg
│ │ │ │ ├── versions.svg
│ │ │ │ └── vite.svg
│ │ │ └── styles
│ │ │ │ └── index.css
│ │ ├── theme
│ │ │ └── index.tsx
│ │ ├── vitest.config.ts
│ │ └── wrangler.json
│ ├── file-manager
│ │ ├── .gitignore
│ │ ├── .prettierrc.json
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── components.json
│ │ ├── eslint.config.js
│ │ ├── index.html
│ │ ├── package.json
│ │ ├── postcss.config.js
│ │ ├── public
│ │ │ ├── auth-dialog-image.png
│ │ │ ├── branch-icon.svg
│ │ │ ├── cap-table
│ │ │ │ ├── changes.json
│ │ │ │ ├── commits.json
│ │ │ │ └── latestFile.csv
│ │ │ ├── captable-cover-big.png
│ │ │ ├── captable-cover-small.png
│ │ │ ├── discord-icon.svg
│ │ │ ├── github-icon.svg
│ │ │ ├── lix.svg
│ │ │ └── x-icon.svg
│ │ ├── src
│ │ │ ├── components
│ │ │ │ ├── AccountDialog.tsx
│ │ │ │ ├── AutomationConfig.tsx
│ │ │ │ ├── ChangeDiffComponent.tsx
│ │ │ │ ├── ChangeDot.tsx
│ │ │ │ ├── ChangeGroupDot.tsx
│ │ │ │ ├── ChatInput.tsx
│ │ │ │ ├── CheckpointComponent.tsx
│ │ │ │ ├── Comment.tsx
│ │ │ │ ├── ConnectedChanges.tsx
│ │ │ │ ├── CustomLink.tsx
│ │ │ │ ├── DiscussionPreview.tsx
│ │ │ │ ├── DiscussionThread.tsx
│ │ │ │ ├── DropArea.tsx
│ │ │ │ ├── FilterSelect.tsx
│ │ │ │ ├── IntermediateCheckpointComponent.tsx
│ │ │ │ ├── ListItems.tsx
│ │ │ │ ├── LixSwitcher.tsx
│ │ │ │ ├── MergeDialog.tsx
│ │ │ │ ├── PollingComponent.tsx
│ │ │ │ ├── SectionHeader.tsx
│ │ │ │ ├── SidebarNavigation.tsx
│ │ │ │ ├── UserAvatar.tsx
│ │ │ │ ├── VersionDropdown.tsx
│ │ │ │ ├── icons
│ │ │ │ │ ├── IconAdd.tsx
│ │ │ │ │ ├── IconArrow.tsx
│ │ │ │ │ ├── IconArrowLeft.tsx
│ │ │ │ │ ├── IconArrowRight.tsx
│ │ │ │ │ ├── IconAutomation.tsx
│ │ │ │ │ ├── IconBranch.tsx
│ │ │ │ │ ├── IconCheck.tsx
│ │ │ │ │ ├── IconCheckCircle.tsx
│ │ │ │ │ ├── IconCheckboxEmpty.tsx
│ │ │ │ │ ├── IconCheckboxFilled.tsx
│ │ │ │ │ ├── IconChevron.tsx
│ │ │ │ │ ├── IconClose.tsx
│ │ │ │ │ ├── IconComment.tsx
│ │ │ │ │ ├── IconCondition.tsx
│ │ │ │ │ ├── IconDiscussion.tsx
│ │ │ │ │ ├── IconFile.tsx
│ │ │ │ │ ├── IconFilter.tsx
│ │ │ │ │ ├── IconGroup.tsx
│ │ │ │ │ ├── IconLightning.tsx
│ │ │ │ │ ├── IconMarker.tsx
│ │ │ │ │ ├── IconMeatball.tsx
│ │ │ │ │ ├── IconMerge.tsx
│ │ │ │ │ ├── IconMinus.tsx
│ │ │ │ │ ├── IconNotification.tsx
│ │ │ │ │ ├── IconNotificationNew.tsx
│ │ │ │ │ ├── IconUpload.tsx
│ │ │ │ │ └── IconWarningFilled.tsx
│ │ │ │ └── ui
│ │ │ │ │ ├── avatar.tsx
│ │ │ │ │ ├── badge.tsx
│ │ │ │ │ ├── button.tsx
│ │ │ │ │ ├── checkbox.tsx
│ │ │ │ │ ├── dialog.tsx
│ │ │ │ │ ├── dropdown-menu.tsx
│ │ │ │ │ ├── form.tsx
│ │ │ │ │ ├── input.tsx
│ │ │ │ │ ├── label.tsx
│ │ │ │ │ ├── popover.tsx
│ │ │ │ │ ├── select.tsx
│ │ │ │ │ ├── separator.tsx
│ │ │ │ │ ├── sheet.tsx
│ │ │ │ │ ├── sidebar.tsx
│ │ │ │ │ ├── skeleton.tsx
│ │ │ │ │ ├── tabs.tsx
│ │ │ │ │ ├── textarea.tsx
│ │ │ │ │ └── tooltip.tsx
│ │ │ ├── helper
│ │ │ │ ├── demo-lix-file
│ │ │ │ │ ├── demo-lix-file.ts
│ │ │ │ │ └── minimal.csv
│ │ │ │ ├── gernerateUserColor
│ │ │ │ │ └── generateUserColor.ts
│ │ │ │ ├── new-lix.ts
│ │ │ │ ├── saveLixToOpfs.ts
│ │ │ │ └── timeAgo.ts
│ │ │ ├── hooks
│ │ │ │ └── use-mobile.tsx
│ │ │ ├── index.css
│ │ │ ├── layouts
│ │ │ │ ├── AppLayout.tsx
│ │ │ │ └── Sidebar.tsx
│ │ │ ├── lib
│ │ │ │ └── utils.ts
│ │ │ ├── main.tsx
│ │ │ ├── routes.tsx
│ │ │ ├── routes
│ │ │ │ ├── automation
│ │ │ │ │ └── Page.tsx
│ │ │ │ └── index
│ │ │ │ │ └── Page.tsx
│ │ │ ├── state-active-file.ts
│ │ │ ├── state.ts
│ │ │ └── vite-env.d.ts
│ │ ├── tailwind.config.js
│ │ ├── tsconfig.json
│ │ ├── types
│ │ │ └── change-context.ts
│ │ └── vite.config.ts
│ ├── host
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── public
│ │ │ ├── robots.txt
│ │ │ └── sitemap.xml
│ │ ├── src
│ │ │ └── main.ts
│ │ └── tsconfig.json
│ ├── html-diff
│ │ ├── .gitignore
│ │ ├── .prettierrc.json
│ │ ├── CHANGELOG.md
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── docs
│ │ │ ├── _meta.json
│ │ │ ├── components
│ │ │ │ ├── diff-playground.tsx
│ │ │ │ ├── interactive-showcase.tsx
│ │ │ │ ├── showcase.tsx
│ │ │ │ ├── tabbed-content-viewer.tsx
│ │ │ │ └── test-cases.tsx
│ │ │ ├── examples
│ │ │ │ ├── index.md
│ │ │ │ ├── rich-text-document
│ │ │ │ │ ├── after.html
│ │ │ │ │ ├── before.html
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ └── styles.css
│ │ │ │ ├── simple-rich-text-document
│ │ │ │ │ ├── after.html
│ │ │ │ │ ├── before.html
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ └── styles.css
│ │ │ │ └── table-diff
│ │ │ │ │ ├── after.html
│ │ │ │ │ ├── before.html
│ │ │ │ │ ├── index.mdx
│ │ │ │ │ └── styles.css
│ │ │ ├── guide
│ │ │ │ ├── _meta.json
│ │ │ │ ├── attributes.mdx
│ │ │ │ ├── contributing.md
│ │ │ │ ├── how-it-works.mdx
│ │ │ │ ├── index.mdx
│ │ │ │ ├── interactivity.mdx
│ │ │ │ ├── limitations.md
│ │ │ │ └── styling.md
│ │ │ ├── index.md
│ │ │ ├── playground.mdx
│ │ │ ├── public
│ │ │ │ ├── diff.svg
│ │ │ │ ├── rspress-dark-logo.png
│ │ │ │ ├── rspress-icon.png
│ │ │ │ └── rspress-light-logo.png
│ │ │ ├── styles
│ │ │ │ └── index.css
│ │ │ └── test-cases.mdx
│ │ ├── index.html
│ │ ├── package.json
│ │ ├── postcss.config.cjs
│ │ ├── rspress.config.ts
│ │ ├── src
│ │ │ ├── default.css
│ │ │ ├── index.ts
│ │ │ ├── render-html-diff.test.ts
│ │ │ ├── render-html-diff.ts
│ │ │ └── test-cases.ts
│ │ ├── tsconfig.json
│ │ ├── vitest.config.ts
│ │ └── wrangler.json
│ ├── inspector
│ │ ├── .gitignore
│ │ ├── README.md
│ │ ├── index.html
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── App.tsx
│ │ │ ├── components
│ │ │ │ ├── floating-window.tsx
│ │ │ │ ├── log-indicator.tsx
│ │ │ │ └── window-manager-context.tsx
│ │ │ ├── context.tsx
│ │ │ ├── hooks
│ │ │ │ ├── use-key-value.ts
│ │ │ │ ├── use-lix.ts
│ │ │ │ └── use-query.ts
│ │ │ ├── index.tsx
│ │ │ ├── pages
│ │ │ │ ├── data-explorer
│ │ │ │ │ ├── data-table.tsx
│ │ │ │ │ └── index.tsx
│ │ │ │ └── graph
│ │ │ │ │ ├── commit-details-window.tsx
│ │ │ │ │ ├── index.tsx
│ │ │ │ │ ├── nodes.tsx
│ │ │ │ │ └── queries.ts
│ │ │ ├── styles.css
│ │ │ └── vite-env.d.ts
│ │ ├── tsconfig.json
│ │ └── vite.config.ts
│ ├── plugin-csv
│ │ ├── .prettierrc.json
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── eslint.config.js
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── applyChanges.test.ts
│ │ │ ├── applyChanges.ts
│ │ │ ├── detectChanges.test.ts
│ │ │ ├── detectChanges.ts
│ │ │ ├── detectConflicts.test.ts
│ │ │ ├── index.ts
│ │ │ ├── renderDiff.test.ts
│ │ │ ├── renderDiff.ts
│ │ │ ├── schemas
│ │ │ │ ├── cell.ts
│ │ │ │ ├── header.ts
│ │ │ │ └── row.ts
│ │ │ └── utilities
│ │ │ │ ├── mockChanges.ts
│ │ │ │ ├── mockConflicts.ts
│ │ │ │ ├── parseCsv.ts
│ │ │ │ └── parseCsvFields.ts
│ │ └── tsconfig.json
│ ├── plugin-json
│ │ ├── .prettierrc.json
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── rolldown.config.ts
│ │ ├── src
│ │ │ ├── apply-changes.test.ts
│ │ │ ├── apply-changes.ts
│ │ │ ├── detect-changes.test.ts
│ │ │ ├── detect-changes.ts
│ │ │ ├── e2e.test.ts
│ │ │ ├── index.ts
│ │ │ ├── schemas
│ │ │ │ ├── json-pointer-value.test.ts
│ │ │ │ └── json-pointer-value.ts
│ │ │ └── utilities
│ │ │ │ ├── json-pointer.ts
│ │ │ │ └── mockChanges.ts
│ │ └── tsconfig.json
│ ├── plugin-md
│ │ ├── .oxlintrc.json
│ │ ├── .prettierrc.json
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── rolldown.config.ts
│ │ ├── src
│ │ │ ├── apply-changes.test.ts
│ │ │ ├── apply-changes.ts
│ │ │ ├── detect-changes.test.ts
│ │ │ ├── detect-changes.ts
│ │ │ ├── e2e.test.ts
│ │ │ ├── index.ts
│ │ │ ├── node-id-prefix.ts
│ │ │ ├── render-diff.test.ts
│ │ │ ├── render-diff.ts
│ │ │ └── sync-node-ids.ts
│ │ ├── tsconfig.json
│ │ └── vitest.config.ts
│ ├── plugin-prosemirror
│ │ ├── .oxlintrc.json
│ │ ├── .prettierrc.json
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── assets
│ │ │ └── prosemirror.png
│ │ ├── example
│ │ │ ├── README.md
│ │ │ ├── assets
│ │ │ │ ├── after.json
│ │ │ │ └── before.json
│ │ │ ├── index.html
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ │ ├── App.tsx
│ │ │ │ ├── components
│ │ │ │ │ ├── AccountSelector.tsx
│ │ │ │ │ ├── ChangeSet.tsx
│ │ │ │ │ ├── Checkpoints.tsx
│ │ │ │ │ ├── DiffView.tsx
│ │ │ │ │ ├── Editor.tsx
│ │ │ │ │ ├── LixDebugPanel.tsx
│ │ │ │ │ ├── NewProposal.tsx
│ │ │ │ │ ├── Proposals.tsx
│ │ │ │ │ ├── Sidebar.tsx
│ │ │ │ │ ├── Thread.tsx
│ │ │ │ │ ├── Toolbar.tsx
│ │ │ │ │ └── VersionToolbar.tsx
│ │ │ │ ├── hooks
│ │ │ │ │ └── useKeyValue.ts
│ │ │ │ ├── index.css
│ │ │ │ ├── prosemirror
│ │ │ │ │ ├── custom-node-views.tsx
│ │ │ │ │ └── schema.ts
│ │ │ │ ├── queries.ts
│ │ │ │ ├── style.css
│ │ │ │ ├── utilities
│ │ │ │ │ ├── nameUtils.ts
│ │ │ │ │ └── timeUtils.ts
│ │ │ │ └── vite-env.d.ts
│ │ │ ├── tsconfig.json
│ │ │ ├── tsconfig.node.json
│ │ │ └── vite.config.ts
│ │ ├── package.json
│ │ ├── rolldown.config.ts
│ │ ├── src
│ │ │ ├── applyChanges.test.ts
│ │ │ ├── applyChanges.ts
│ │ │ ├── detectChanges.test.ts
│ │ │ ├── detectChanges.ts
│ │ │ ├── e2e.test.ts
│ │ │ ├── index.ts
│ │ │ ├── prosemirror
│ │ │ │ ├── id-plugin.ts
│ │ │ │ └── lix-plugin.ts
│ │ │ ├── schemas
│ │ │ │ ├── document.ts
│ │ │ │ └── node.ts
│ │ │ └── utilities
│ │ │ │ └── mockChanges.ts
│ │ └── tsconfig.json
│ ├── react-utils
│ │ ├── .oxlintrc.json
│ │ ├── .prettierrc.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ │ ├── hooks
│ │ │ │ ├── use-lix.test.tsx
│ │ │ │ ├── use-lix.ts
│ │ │ │ ├── use-query.test.tsx
│ │ │ │ └── use-query.ts
│ │ │ ├── index.ts
│ │ │ └── provider.tsx
│ │ ├── test-setup.ts
│ │ ├── tsconfig.json
│ │ └── vitest.config.ts
│ ├── sdk
│ │ ├── .gitignore
│ │ ├── .oxlintrc.json
│ │ ├── .prettierrc.json
│ │ ├── AGENTS.md
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── assets
│ │ │ ├── backend_features_to_files.png
│ │ │ ├── banner.png
│ │ │ ├── diff-examples.svg
│ │ │ ├── fm-automate.svg
│ │ │ ├── interop.png
│ │ │ ├── open_file.png
│ │ │ ├── permissionless_collaboration.svg
│ │ │ └── use_cases.png
│ │ ├── examples
│ │ │ └── server-protocol-handler-hono
│ │ │ │ ├── CHANGELOG.md
│ │ │ │ ├── package.json
│ │ │ │ ├── src
│ │ │ │ └── main.ts
│ │ │ │ └── tsconfig.json
│ │ ├── package.json
│ │ ├── scripts
│ │ │ ├── build.js
│ │ │ └── embed-sqlite-wasm.js
│ │ ├── src
│ │ │ ├── account
│ │ │ │ ├── create-account.test.ts
│ │ │ │ ├── create-account.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ ├── schema.test.ts
│ │ │ │ ├── switch-account.test.ts
│ │ │ │ └── switch-account.ts
│ │ │ ├── change-author
│ │ │ │ ├── index.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ └── schema.test.ts
│ │ │ ├── change-conflict
│ │ │ │ ├── create-change-conflict.test.ts
│ │ │ │ ├── create-change-conflict.ts
│ │ │ │ ├── detect-change-conflicts.test.ts
│ │ │ │ ├── detect-change-conflicts.ts
│ │ │ │ ├── detect-diverging-entity-conflict.test.ts
│ │ │ │ ├── detect-diverging-entity-conflict.ts
│ │ │ │ ├── garbage-collect-change-conflicts.test.ts
│ │ │ │ ├── garbage-collect-change-conflicts.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── resolve-conflict-by-selecting.test.ts
│ │ │ │ ├── resolve-conflict-by-selecting.ts
│ │ │ │ └── update-change-conflicts.ts
│ │ │ ├── change-proposal
│ │ │ │ ├── accept-change-proposal.test.ts
│ │ │ │ ├── accept-change-proposal.ts
│ │ │ │ ├── create-change-proposal.test.ts
│ │ │ │ ├── create-change-proposal.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── reject-change-proposal.test.ts
│ │ │ │ ├── reject-change-proposal.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ └── schema.test.ts
│ │ │ ├── change-set
│ │ │ │ ├── apply-change-set.test.ts
│ │ │ │ ├── apply-change-set.ts
│ │ │ │ ├── create-change-set.test.ts
│ │ │ │ ├── create-change-set.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ └── schema.test.ts
│ │ │ ├── change
│ │ │ │ ├── index.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ ├── schema.bench.ts
│ │ │ │ ├── schema.test.ts
│ │ │ │ └── schema.ts
│ │ │ ├── commit
│ │ │ │ ├── index.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ └── schema.test.ts
│ │ │ ├── conversation
│ │ │ │ ├── create-conversation-message.test.ts
│ │ │ │ ├── create-conversation-message.ts
│ │ │ │ ├── create-conversation.test.ts
│ │ │ │ ├── create-conversation.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── schema-definition.ts
│ │ │ ├── database
│ │ │ │ ├── graph-traversal-mode.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── init-db.ts
│ │ │ │ ├── kysely
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── json-column-config.ts
│ │ │ │ │ ├── plugins.ts
│ │ │ │ │ └── plugins
│ │ │ │ │ │ ├── json-column-plugin.test.ts
│ │ │ │ │ │ ├── json-column-plugin.ts
│ │ │ │ │ │ ├── view-insert-returning-error-plugin.test.ts
│ │ │ │ │ │ └── view-insert-returning-error-plugin.ts
│ │ │ │ ├── nano-id.test.ts
│ │ │ │ ├── nano-id.ts
│ │ │ │ ├── schema-view-map.ts
│ │ │ │ ├── schema.ts
│ │ │ │ └── sqlite
│ │ │ │ │ ├── content-from-database.ts
│ │ │ │ │ ├── create-in-memory-database.ts
│ │ │ │ │ ├── environment-dialect.test.ts
│ │ │ │ │ ├── environment-dialect.ts
│ │ │ │ │ ├── import-database.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── kysely-driver
│ │ │ │ │ ├── connection-mutex.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── sqlite-wasm-connection.ts
│ │ │ │ │ ├── sqlite-wasm-dialect-config.ts
│ │ │ │ │ └── sqlite-wasm-driver.ts
│ │ │ │ │ ├── lix-dialect.ts
│ │ │ │ │ ├── load-database-in-memory.ts
│ │ │ │ │ └── sqlite-wasm-binary.d.ts
│ │ │ ├── dependency
│ │ │ │ ├── kysely
│ │ │ │ │ ├── helpers
│ │ │ │ │ │ └── sqlite.ts
│ │ │ │ │ └── index.ts
│ │ │ │ └── zettel-ast
│ │ │ │ │ └── index.ts
│ │ │ ├── diff
│ │ │ │ ├── index.ts
│ │ │ │ ├── select-commit-diff.bench.ts
│ │ │ │ ├── select-commit-diff.test.ts
│ │ │ │ ├── select-commit-diff.ts
│ │ │ │ ├── select-working-diff.bench.ts
│ │ │ │ ├── select-working-diff.test.ts
│ │ │ │ └── select-working-diff.ts
│ │ │ ├── engine
│ │ │ │ ├── boot.test.ts
│ │ │ │ ├── boot.ts
│ │ │ │ ├── cel-environment
│ │ │ │ │ ├── cel-environment.test.ts
│ │ │ │ │ └── cel-environment.ts
│ │ │ │ ├── deterministic-mode
│ │ │ │ │ ├── is-deterministic-mode.test.ts
│ │ │ │ │ ├── is-deterministic-mode.ts
│ │ │ │ │ ├── options.test.ts
│ │ │ │ │ └── options.ts
│ │ │ │ ├── entity-views
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── build-json-object-entries.test.ts
│ │ │ │ │ ├── build-json-object-entries.ts
│ │ │ │ │ ├── entity-state-by-version.ts
│ │ │ │ │ ├── entity-state-history.ts
│ │ │ │ │ ├── entity-state.ts
│ │ │ │ │ ├── entity-view-builder.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── types.test.ts
│ │ │ │ │ └── types.ts
│ │ │ │ ├── execute-sync.test.ts
│ │ │ │ ├── execute-sync.ts
│ │ │ │ ├── explain-query.test.ts
│ │ │ │ ├── explain-query.ts
│ │ │ │ ├── functions
│ │ │ │ │ ├── function-registry.ts
│ │ │ │ │ ├── generate-human-id.test.ts
│ │ │ │ │ ├── generate-human-id.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── nano-id.bench.ts
│ │ │ │ │ ├── nano-id.test.ts
│ │ │ │ │ ├── nano-id.ts
│ │ │ │ │ ├── random.test.ts
│ │ │ │ │ ├── random.ts
│ │ │ │ │ ├── register-builtins.ts
│ │ │ │ │ ├── sequence.test.ts
│ │ │ │ │ ├── sequence.ts
│ │ │ │ │ ├── timestamp.test.ts
│ │ │ │ │ ├── timestamp.ts
│ │ │ │ │ ├── uuid-v7.test.ts
│ │ │ │ │ └── uuid-v7.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── internal-query-builder.ts
│ │ │ │ ├── preprocessor
│ │ │ │ │ ├── create-preprocessor.test.ts
│ │ │ │ │ ├── create-preprocessor.ts
│ │ │ │ │ ├── entity-views
│ │ │ │ │ │ ├── __bench__
│ │ │ │ │ │ │ ├── entity-view-select-all-rows.explain.txt
│ │ │ │ │ │ │ └── entity-view-select-id-filter.explain.txt
│ │ │ │ │ │ ├── delete.test.ts
│ │ │ │ │ │ ├── delete.ts
│ │ │ │ │ │ ├── insert.test.ts
│ │ │ │ │ │ ├── insert.ts
│ │ │ │ │ │ ├── select.bench.ts
│ │ │ │ │ │ ├── select.test.ts
│ │ │ │ │ │ ├── select.ts
│ │ │ │ │ │ ├── shared.ts
│ │ │ │ │ │ ├── update.test.ts
│ │ │ │ │ │ └── update.ts
│ │ │ │ │ ├── inheritance
│ │ │ │ │ │ ├── version-inheritance-cache.test.ts
│ │ │ │ │ │ └── version-inheritance-cache.ts
│ │ │ │ │ ├── sql-parser
│ │ │ │ │ │ ├── ast-helpers.ts
│ │ │ │ │ │ ├── column-usage.ts
│ │ │ │ │ │ ├── compile.test.ts
│ │ │ │ │ │ ├── compile.ts
│ │ │ │ │ │ ├── cst.ts
│ │ │ │ │ │ ├── lexer.ts
│ │ │ │ │ │ ├── nodes.ts
│ │ │ │ │ │ ├── parse.test.ts
│ │ │ │ │ │ ├── parse.ts
│ │ │ │ │ │ ├── visitor.test.ts
│ │ │ │ │ │ └── visitor.ts
│ │ │ │ │ ├── steps
│ │ │ │ │ │ ├── cache-populator.test.ts
│ │ │ │ │ │ ├── cache-populator.ts
│ │ │ │ │ │ ├── expand-sql-views.test.ts
│ │ │ │ │ │ ├── expand-sql-views.ts
│ │ │ │ │ │ ├── rewrite-active-version-subquery.test.ts
│ │ │ │ │ │ ├── rewrite-active-version-subquery.ts
│ │ │ │ │ │ ├── rewrite-vtable-selects.bench.ts
│ │ │ │ │ │ ├── rewrite-vtable-selects.test.ts
│ │ │ │ │ │ └── rewrite-vtable-selects.ts
│ │ │ │ │ └── types.ts
│ │ │ │ ├── sql-parser
│ │ │ │ │ ├── tokenizer.test.ts
│ │ │ │ │ └── tokenizer.ts
│ │ │ │ ├── with-runtime-cache.test.ts
│ │ │ │ └── with-runtime-cache.ts
│ │ │ ├── entity
│ │ │ │ ├── conversation
│ │ │ │ │ ├── attach-conversation.test.ts
│ │ │ │ │ ├── attach-conversation.ts
│ │ │ │ │ ├── schema-definition.ts
│ │ │ │ │ └── schema.test.ts
│ │ │ │ ├── eb-entity.test.ts
│ │ │ │ ├── eb-entity.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── label
│ │ │ │ │ ├── attach-label.test.ts
│ │ │ │ │ ├── attach-label.ts
│ │ │ │ │ ├── schema-definition.ts
│ │ │ │ │ └── schema.test.ts
│ │ │ │ └── types.ts
│ │ │ ├── environment
│ │ │ │ ├── api.test.ts
│ │ │ │ ├── api.ts
│ │ │ │ ├── in-memory.test.ts
│ │ │ │ ├── in-memory.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── kysely
│ │ │ │ │ └── kysely-driver.test.ts
│ │ │ │ ├── load-from-string.test.ts
│ │ │ │ ├── load-from-string.ts
│ │ │ │ ├── opfs-sah.browser.test.ts
│ │ │ │ ├── opfs-sah.ts
│ │ │ │ ├── opfs-sah.worker.ts
│ │ │ │ └── test-actors
│ │ │ │ │ └── echo.actor.ts
│ │ │ ├── filesystem
│ │ │ │ ├── __bench__
│ │ │ │ │ ├── batch-file-reads-select-multiple-files.explain.txt
│ │ │ │ │ ├── file-delete-operations-delete.explain.txt
│ │ │ │ │ ├── file-delete-operations-insert.explain.txt
│ │ │ │ │ ├── file-insert-operations.explain.txt
│ │ │ │ │ ├── file-read-by-exact-path.explain.txt
│ │ │ │ │ ├── file-read-excluding-file-path-via-not-like.explain.txt
│ │ │ │ │ ├── file-read-with-path-based-like.explain.txt
│ │ │ │ │ ├── file-reads-with-varying-sizes.explain.txt
│ │ │ │ │ ├── file-table-full-scan.explain.txt
│ │ │ │ │ ├── file-update-by-path.explain.txt
│ │ │ │ │ ├── mixed-file-read-pattern-80-20-distribution.explain.txt
│ │ │ │ │ ├── repeated-file-reads-same-file-cache-hit-scenario.explain.txt
│ │ │ │ │ └── sequential-file-reads-unique-files.explain.txt
│ │ │ │ ├── directory
│ │ │ │ │ ├── ensure-directories.ts
│ │ │ │ │ ├── schema-definition.ts
│ │ │ │ │ ├── schema.test.ts
│ │ │ │ │ └── schema.ts
│ │ │ │ ├── file
│ │ │ │ │ ├── cache
│ │ │ │ │ │ ├── clear-file-data-cache.ts
│ │ │ │ │ │ ├── lixcol-schema.ts
│ │ │ │ │ │ ├── path-cache-schema.ts
│ │ │ │ │ │ ├── schema.test.ts
│ │ │ │ │ │ ├── schema.ts
│ │ │ │ │ │ ├── update-file-data-cache.ts
│ │ │ │ │ │ ├── update-file-lixcol-cache.ts
│ │ │ │ │ │ └── update-file-path-cache.ts
│ │ │ │ │ ├── descriptor-utils.ts
│ │ │ │ │ ├── file-handlers.test.ts
│ │ │ │ │ ├── file-handlers.ts
│ │ │ │ │ ├── materialize-file-data-at-commit.ts
│ │ │ │ │ ├── materialize-file-data.test.ts
│ │ │ │ │ ├── materialize-file-data.ts
│ │ │ │ │ ├── schema-definition.ts
│ │ │ │ │ ├── schema.test.ts
│ │ │ │ │ ├── schema.ts
│ │ │ │ │ ├── select-file-data.ts
│ │ │ │ │ ├── select-file-lixcol.ts
│ │ │ │ │ ├── store-detected-change-schema.test.ts
│ │ │ │ │ ├── store-detected-change-schema.ts
│ │ │ │ │ ├── unknown-file-fallback-plugin.test.ts
│ │ │ │ │ └── unknown-file-fallback-plugin.ts
│ │ │ │ ├── fs.bench.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── path.test.ts
│ │ │ │ ├── path.ts
│ │ │ │ ├── schema.test.ts
│ │ │ │ ├── schema.ts
│ │ │ │ └── util
│ │ │ │ │ └── glob.ts
│ │ │ ├── hooks
│ │ │ │ ├── create-hooks.test.ts
│ │ │ │ ├── create-hooks.ts
│ │ │ │ └── index.ts
│ │ │ ├── index.ts
│ │ │ ├── key-value
│ │ │ │ ├── index.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ └── schema.test.ts
│ │ │ ├── label
│ │ │ │ ├── create-label.test.ts
│ │ │ │ ├── create-label.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ └── schema.test.ts
│ │ │ ├── lix
│ │ │ │ ├── index.ts
│ │ │ │ ├── new-lix.test.ts
│ │ │ │ ├── new-lix.ts
│ │ │ │ ├── open-lix.bench.ts
│ │ │ │ ├── open-lix.test.ts
│ │ │ │ └── open-lix.ts
│ │ │ ├── log
│ │ │ │ ├── create-lix-own-log.test.ts
│ │ │ │ ├── create-lix-own-log.ts
│ │ │ │ ├── create-log.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ └── schema.test.ts
│ │ │ ├── observe
│ │ │ │ ├── create-observe.test.ts
│ │ │ │ ├── create-observe.ts
│ │ │ │ ├── determine-schema-keys.test.ts
│ │ │ │ ├── determine-schema-keys.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── lix-observable.test.ts
│ │ │ │ └── lix-observable.ts
│ │ │ ├── plugin
│ │ │ │ ├── index.ts
│ │ │ │ ├── lix-plugin.test-d.ts
│ │ │ │ ├── lix-plugin.test.ts
│ │ │ │ ├── lix-plugin.ts
│ │ │ │ ├── mock-json-plugin.flatten.ts
│ │ │ │ ├── mock-json-plugin.test.ts
│ │ │ │ ├── mock-json-plugin.ts
│ │ │ │ ├── query-sync.test.ts
│ │ │ │ └── query-sync.ts
│ │ │ ├── query-filter
│ │ │ │ ├── commit-is-ancestor-of.test.ts
│ │ │ │ ├── commit-is-ancestor-of.ts
│ │ │ │ ├── commit-is-descendant-of.test.ts
│ │ │ │ ├── commit-is-descendant-of.ts
│ │ │ │ └── index.ts
│ │ │ ├── schema-definition
│ │ │ │ ├── definition.test-d.ts
│ │ │ │ ├── definition.test.ts
│ │ │ │ ├── definition.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── json-pointer.test.ts
│ │ │ │ ├── json-pointer.ts
│ │ │ │ ├── json-type.test.ts
│ │ │ │ ├── json-type.ts
│ │ │ │ ├── validate-lix-schema.test.ts
│ │ │ │ └── validate-lix-schema.ts
│ │ │ ├── server-protocol-handler
│ │ │ │ ├── create-server-protocol-handler.ts
│ │ │ │ ├── environment
│ │ │ │ │ ├── create-in-memory-environment.test.ts
│ │ │ │ │ ├── create-in-memory-environment.ts
│ │ │ │ │ └── environment.ts
│ │ │ │ ├── index.ts
│ │ │ │ └── routes
│ │ │ │ │ ├── get-v1.test.ts
│ │ │ │ │ ├── get-v1.ts
│ │ │ │ │ ├── new-v1.test.ts
│ │ │ │ │ ├── new-v1.ts
│ │ │ │ │ ├── pull-v1.test.ts
│ │ │ │ │ ├── pull-v1.ts
│ │ │ │ │ ├── push-v1.test.ts
│ │ │ │ │ └── push-v1.ts
│ │ │ ├── services
│ │ │ │ ├── env-variables
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── create-index-file.js
│ │ │ │ │ └── index.d.ts
│ │ │ │ └── telemetry
│ │ │ │ │ ├── capture.test.ts
│ │ │ │ │ └── capture.ts
│ │ │ ├── snapshot
│ │ │ │ ├── schema.test.ts
│ │ │ │ └── schema.ts
│ │ │ ├── state-history
│ │ │ │ ├── schema.test.ts
│ │ │ │ └── schema.ts
│ │ │ ├── state
│ │ │ │ ├── README.md
│ │ │ │ ├── cache-v2
│ │ │ │ │ ├── cache-columns.ts
│ │ │ │ │ ├── clear-state-cache.test.ts
│ │ │ │ │ ├── clear-state-cache.ts
│ │ │ │ │ ├── create-schema-cache-table.test.ts
│ │ │ │ │ ├── create-schema-cache-table.ts
│ │ │ │ │ ├── is-stale-state-cache.test.ts
│ │ │ │ │ ├── is-stale-state-cache.ts
│ │ │ │ │ ├── mark-state-cache-as-stale.ts
│ │ │ │ │ ├── populate-state-cache.test.ts
│ │ │ │ │ ├── populate-state-cache.ts
│ │ │ │ │ ├── schema-metadata.ts
│ │ │ │ │ ├── schema.bench.ts
│ │ │ │ │ ├── schema.test.ts
│ │ │ │ │ ├── schema.ts
│ │ │ │ │ ├── select-from-state-cache.test.ts
│ │ │ │ │ ├── select-from-state-cache.ts
│ │ │ │ │ ├── sqlite-type-mapper.test.ts
│ │ │ │ │ ├── sqlite-type-mapper.ts
│ │ │ │ │ ├── update-state-cache.bench.ts
│ │ │ │ │ ├── update-state-cache.test.ts
│ │ │ │ │ └── update-state-cache.ts
│ │ │ │ ├── cache
│ │ │ │ │ ├── builtin-schemas.ts
│ │ │ │ │ ├── clear-state-cache.test.ts
│ │ │ │ │ ├── clear-state-cache.ts
│ │ │ │ │ ├── create-schema-cache-table.test.ts
│ │ │ │ │ ├── create-schema-cache-table.ts
│ │ │ │ │ ├── is-stale-state-cache.test.ts
│ │ │ │ │ ├── is-stale-state-cache.ts
│ │ │ │ │ ├── mark-state-cache-as-stale.ts
│ │ │ │ │ ├── populate-state-cache.test.ts
│ │ │ │ │ ├── populate-state-cache.ts
│ │ │ │ │ ├── schema-indexes.test.ts
│ │ │ │ │ ├── schema-indexes.ts
│ │ │ │ │ ├── schema-resolver.ts
│ │ │ │ │ ├── schema.bench.ts
│ │ │ │ │ ├── schema.test.ts
│ │ │ │ │ ├── schema.ts
│ │ │ │ │ ├── select-from-state-cache.test.ts
│ │ │ │ │ ├── select-from-state-cache.ts
│ │ │ │ │ ├── update-state-cache.bench.ts
│ │ │ │ │ ├── update-state-cache.test.ts
│ │ │ │ │ └── update-state-cache.ts
│ │ │ │ ├── create-checkpoint.test.ts
│ │ │ │ ├── create-checkpoint.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── materialize-state.bench.ts
│ │ │ │ ├── materialize-state.test.ts
│ │ │ │ ├── materialize-state.ts
│ │ │ │ ├── schema.bench.ts
│ │ │ │ ├── schema.ts
│ │ │ │ ├── transaction
│ │ │ │ │ ├── insert-transaction-state.test.ts
│ │ │ │ │ ├── insert-transaction-state.ts
│ │ │ │ │ └── schema.ts
│ │ │ │ ├── transition.bench.ts
│ │ │ │ ├── transition.test.ts
│ │ │ │ ├── transition.ts
│ │ │ │ ├── untracked
│ │ │ │ │ ├── schema.test.ts
│ │ │ │ │ ├── schema.ts
│ │ │ │ │ ├── update-untracked-state.test.ts
│ │ │ │ │ └── update-untracked-state.ts
│ │ │ │ ├── views
│ │ │ │ │ ├── __bench__
│ │ │ │ │ │ ├── state-delete-tracked-row.explain.txt
│ │ │ │ │ │ ├── state-insert-tracked-row.explain.txt
│ │ │ │ │ │ ├── state-insert-untracked-row.explain.txt
│ │ │ │ │ │ ├── state-select-recent-file-scan.explain.txt
│ │ │ │ │ │ ├── state-select-tracked-entity.explain.txt
│ │ │ │ │ │ ├── state-select-untracked-filter.explain.txt
│ │ │ │ │ │ └── state-update-tracked-row.explain.txt
│ │ │ │ │ ├── state-by-version.ts
│ │ │ │ │ ├── state-with-tombstones.test.ts
│ │ │ │ │ ├── state-with-tombstones.ts
│ │ │ │ │ ├── state.bench.1_base.json
│ │ │ │ │ ├── state.bench.2_dml.json
│ │ │ │ │ ├── state.bench.ts
│ │ │ │ │ ├── state.test.ts
│ │ │ │ │ └── state.ts
│ │ │ │ ├── vtable
│ │ │ │ │ ├── __bench__
│ │ │ │ │ │ ├── cache-entity-version-file-plugin.explain.txt
│ │ │ │ │ │ ├── cache-entity-version-file.explain.txt
│ │ │ │ │ │ ├── cache-entity-version.explain.txt
│ │ │ │ │ │ ├── inherited-cache-entity-version-file-plugin.explain.txt
│ │ │ │ │ │ ├── inherited-cache-entity-version-file.explain.txt
│ │ │ │ │ │ ├── inherited-cache-entity-version.explain.txt
│ │ │ │ │ │ ├── inherited-untracked-entity-version-file-plugin.explain.txt
│ │ │ │ │ │ ├── inherited-untracked-entity-version-file.explain.txt
│ │ │ │ │ │ ├── inherited-untracked-entity-version.explain.txt
│ │ │ │ │ │ ├── transaction-entity-version-file-plugin.explain.txt
│ │ │ │ │ │ ├── transaction-entity-version-file.explain.txt
│ │ │ │ │ │ ├── transaction-entity-version.explain.txt
│ │ │ │ │ │ ├── untracked-entity-version-file-plugin.explain.txt
│ │ │ │ │ │ ├── untracked-entity-version-file.explain.txt
│ │ │ │ │ │ └── untracked-entity-version.explain.txt
│ │ │ │ │ ├── __playground__
│ │ │ │ │ │ ├── validate-state-mutation.foreign-key.explain.txt
│ │ │ │ │ │ ├── validate-state-mutation.primary-key.explain.txt
│ │ │ │ │ │ └── validate-state-mutation.unique-nested.explain.txt
│ │ │ │ │ ├── commit.bench.ts
│ │ │ │ │ ├── commit.test.ts
│ │ │ │ │ ├── commit.ts
│ │ │ │ │ ├── generate-commit.test.ts
│ │ │ │ │ ├── generate-commit.ts
│ │ │ │ │ ├── index.ts
│ │ │ │ │ ├── insert-vtable-log.ts
│ │ │ │ │ ├── primary-key.test.ts
│ │ │ │ │ ├── primary-key.ts
│ │ │ │ │ ├── validate-state-mutation.bench.ts
│ │ │ │ │ ├── validate-state-mutation.playground.test.ts
│ │ │ │ │ ├── validate-state-mutation.test.ts
│ │ │ │ │ ├── validate-state-mutation.ts
│ │ │ │ │ ├── vtable.insert.bench.ts
│ │ │ │ │ ├── vtable.select.bench.ts
│ │ │ │ │ ├── vtable.test.ts
│ │ │ │ │ └── vtable.ts
│ │ │ │ ├── working-change-set
│ │ │ │ │ ├── refresh-working-change-set.test.ts
│ │ │ │ │ └── refresh-working-change-set.ts
│ │ │ │ └── writer.ts
│ │ │ ├── stored-schema
│ │ │ │ ├── get-stored-schema.test.ts
│ │ │ │ ├── get-stored-schema.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ └── schema.test.ts
│ │ │ ├── sync
│ │ │ │ ├── get-diffing-rows.ts
│ │ │ │ ├── merge-state.ts
│ │ │ │ ├── pull-from-server.test.ts
│ │ │ │ ├── pull-from-server.ts
│ │ │ │ ├── push-to-server.test.ts
│ │ │ │ ├── push-to-server.ts
│ │ │ │ ├── sync-process.test.ts
│ │ │ │ └── sync-process.ts
│ │ │ ├── test-utilities
│ │ │ │ └── simulation-test
│ │ │ │ │ ├── cache-miss-simulation.test.ts
│ │ │ │ │ ├── cache-miss-simulation.ts
│ │ │ │ │ ├── chaotic-timestamp-simulation.ts
│ │ │ │ │ ├── engine-boundary-simulation.test.ts
│ │ │ │ │ ├── engine-boundary-simulation.ts
│ │ │ │ │ ├── out-of-order-sequence-simulation.test.ts
│ │ │ │ │ ├── out-of-order-sequence-simulation.ts
│ │ │ │ │ ├── simulation-test.test.ts
│ │ │ │ │ └── simulation-test.ts
│ │ │ ├── types
│ │ │ │ └── fs.d.ts
│ │ │ └── version
│ │ │ │ ├── create-version-from-commit.test.ts
│ │ │ │ ├── create-version-from-commit.ts
│ │ │ │ ├── create-version.test.ts
│ │ │ │ ├── create-version.ts
│ │ │ │ ├── index.ts
│ │ │ │ ├── merge-version.test.ts
│ │ │ │ ├── merge-version.ts
│ │ │ │ ├── schema-definition.ts
│ │ │ │ ├── schema.test.ts
│ │ │ │ ├── schema.ts
│ │ │ │ ├── select-active-version.ts
│ │ │ │ ├── select-version-diff.bench.ts
│ │ │ │ ├── select-version-diff.playground-plan.txt
│ │ │ │ ├── select-version-diff.playground.test.ts
│ │ │ │ ├── select-version-diff.test.ts
│ │ │ │ ├── select-version-diff.ts
│ │ │ │ ├── switch-version.test.ts
│ │ │ │ └── switch-version.ts
│ │ ├── tsconfig.json
│ │ └── vitest.config.ts
│ └── server-protocol-schema
│ │ ├── .gitignore
│ │ ├── .prettierrc.json
│ │ ├── .vscode
│ │ └── extensions.json
│ │ ├── CHANGELOG.md
│ │ ├── LICENSE
│ │ ├── package.json
│ │ ├── src
│ │ └── schema.yaml
│ │ └── tsconfig.json
├── markdown-wc-doc-elements
│ ├── .prettierrc
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── package.json
│ ├── rolldown.config.js
│ ├── src
│ │ ├── doc-accordion.md
│ │ ├── doc-accordion.ts
│ │ ├── doc-callout.md
│ │ ├── doc-callout.ts
│ │ ├── doc-comment.md
│ │ ├── doc-comment.ts
│ │ ├── doc-comments.md
│ │ ├── doc-comments.ts
│ │ ├── doc-copy.md
│ │ ├── doc-copy.ts
│ │ ├── doc-feature.md
│ │ ├── doc-feature.ts
│ │ ├── doc-features.md
│ │ ├── doc-features.ts
│ │ ├── doc-figure.md
│ │ ├── doc-figure.ts
│ │ ├── doc-header.md
│ │ ├── doc-header.ts
│ │ ├── doc-hero.md
│ │ ├── doc-hero.ts
│ │ ├── doc-icon.md
│ │ ├── doc-icon.ts
│ │ ├── doc-link.md
│ │ ├── doc-link.ts
│ │ ├── doc-links.md
│ │ ├── doc-links.ts
│ │ ├── doc-pricing.md
│ │ ├── doc-pricing.ts
│ │ ├── doc-slider.md
│ │ ├── doc-slider.ts
│ │ ├── doc-video.md
│ │ ├── doc-video.ts
│ │ └── index.ts
│ └── tsconfig.json
├── markdown-wc
│ ├── .prettierrc
│ ├── CHANGELOG.md
│ ├── LICENSE
│ ├── README.md
│ ├── assets
│ │ └── dinosaur.svg
│ ├── doc-elements.html
│ ├── examples
│ │ └── tiptap
│ │ │ ├── index.html
│ │ │ ├── package.json
│ │ │ ├── src
│ │ │ ├── App.tsx
│ │ │ ├── main.tsx
│ │ │ └── styles.css
│ │ │ ├── tsconfig.json
│ │ │ └── vite.config.ts
│ ├── index.html
│ ├── package.json
│ ├── rolldown.config.js
│ ├── src
│ │ ├── ast
│ │ │ ├── normalize-ast.ts
│ │ │ ├── parse-markdown.ts
│ │ │ ├── roundtrip.test.ts
│ │ │ ├── schemas.ts
│ │ │ ├── serialize-ast.ts
│ │ │ └── validate-ast.ts
│ │ ├── html
│ │ │ ├── index.ts
│ │ │ ├── parse-from-html.ts
│ │ │ ├── roundtrip.test.ts
│ │ │ ├── serialize-to-html.test.ts
│ │ │ └── serialize-to-html.ts
│ │ ├── index.ts
│ │ ├── inline-styles.ts
│ │ ├── markdown-wc-embed.md
│ │ ├── markdown-wc-embed.ts
│ │ ├── markdown-wc-mermaid.ts
│ │ ├── parse.test.ts
│ │ ├── parse.ts
│ │ ├── preprocess.test.ts
│ │ ├── preprocess.ts
│ │ ├── tiptap
│ │ │ ├── assign-data-id.test.ts
│ │ │ ├── assign-data-id.ts
│ │ │ ├── e2e.test.ts
│ │ │ ├── index.ts
│ │ │ ├── markdown-wc.ts
│ │ │ ├── mdwc-to-tiptap.ts
│ │ │ ├── nodes.html.test.ts
│ │ │ ├── nodes.ts
│ │ │ ├── roundtrip.test.ts
│ │ │ ├── shortcuts.test.ts
│ │ │ ├── shortcuts.ts
│ │ │ └── tiptap-to-mdwc.ts
│ │ └── walking-dinosaur.ts
│ └── tsconfig.json
├── opral-website
│ ├── LICENSE
│ └── index.html
├── papier
│ ├── papier-app
│ │ ├── .prettierrc.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ │ └── index.ts
│ │ └── tsconfig.json
│ └── papier-file-format
│ │ ├── .prettierrc.json
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── package.json
│ │ ├── src
│ │ └── index.ts
│ │ └── tsconfig.json
├── tsconfig
│ ├── CHANGELOG.md
│ ├── package.json
│ └── tsconfig.default.json
└── zettel
│ ├── zettel-ast
│ ├── .prettierrc.json
│ ├── LICENSE
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── builder.test.ts
│ │ ├── builder.ts
│ │ ├── index.ts
│ │ ├── merge.ts
│ │ ├── plain-text.test.ts
│ │ ├── plain-text.ts
│ │ ├── schema.test.ts
│ │ ├── schema.ts
│ │ ├── utils
│ │ │ ├── nano-id.test.ts
│ │ │ └── nano-id.ts
│ │ └── validate.ts
│ └── tsconfig.json
│ ├── zettel-html
│ ├── .prettierrc.json
│ ├── LICENSE
│ ├── README.md
│ ├── package.json
│ ├── src
│ │ ├── html-element.test.ts
│ │ ├── html-element.ts
│ │ ├── html-string.test.ts
│ │ ├── html-string.ts
│ │ ├── index.ts
│ │ ├── utils
│ │ │ └── normalize-html.ts
│ │ ├── validate-html-string.test.ts
│ │ └── validate-html-string.ts
│ └── tsconfig.json
│ └── zettel-lexical
│ ├── .prettierrc.json
│ ├── LICENSE
│ ├── README.md
│ ├── index.html
│ ├── package.json
│ ├── src
│ ├── index.ts
│ ├── lexical-state.ts
│ ├── nodes
│ │ ├── index.ts
│ │ ├── zettel-span.ts
│ │ └── zettel-text-block.ts
│ ├── old
│ │ └── nodes.ts
│ ├── plugin.test.ts
│ └── plugin.ts
│ └── tsconfig.json
├── pnpm-lock.yaml
├── pnpm-workspace.yaml
└── render.yaml
/.changeset/byok-machine-translate.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.changeset/byok-machine-translate.md
--------------------------------------------------------------------------------
/.changeset/config.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.changeset/config.json
--------------------------------------------------------------------------------
/.changeset/fix-cli-create-require.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.changeset/fix-cli-create-require.md
--------------------------------------------------------------------------------
/.changeset/incremental-lix-sync.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.changeset/incremental-lix-sync.md
--------------------------------------------------------------------------------
/.changeset/sherlock-logging-output.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.changeset/sherlock-logging-output.md
--------------------------------------------------------------------------------
/.changeset/sherlock-observe-message-view.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.changeset/sherlock-observe-message-view.md
--------------------------------------------------------------------------------
/.changeset/split-read-file-tool.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.changeset/split-read-file-tool.md
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.gitattributes
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/ISSUE_TEMPLATE/config.yml
--------------------------------------------------------------------------------
/.github/workflows/bench-lix-sdk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/bench-lix-sdk.yml
--------------------------------------------------------------------------------
/.github/workflows/cla.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/cla.yml
--------------------------------------------------------------------------------
/.github/workflows/continuous-integration.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/continuous-integration.yml
--------------------------------------------------------------------------------
/.github/workflows/lix-sdk-readme-sync.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/lix-sdk-readme-sync.yml
--------------------------------------------------------------------------------
/.github/workflows/mirror-flashtype.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/mirror-flashtype.yml
--------------------------------------------------------------------------------
/.github/workflows/mirror-inlang-sdk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/mirror-inlang-sdk.yml
--------------------------------------------------------------------------------
/.github/workflows/mirror-lix-sdk.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/mirror-lix-sdk.yml
--------------------------------------------------------------------------------
/.github/workflows/mirror-paraglide.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/mirror-paraglide.yml
--------------------------------------------------------------------------------
/.github/workflows/publish-ide-extension.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/publish-ide-extension.yml
--------------------------------------------------------------------------------
/.github/workflows/publish-npm-packages.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/publish-npm-packages.yml
--------------------------------------------------------------------------------
/.github/workflows/versioning.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.github/workflows/versioning.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.gitignore
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.prettierignore
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.vscode/extensions.json
--------------------------------------------------------------------------------
/.vscode/launch.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.vscode/launch.json
--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/.vscode/settings.json
--------------------------------------------------------------------------------
/AGENTS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/AGENTS.md
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/README.md
--------------------------------------------------------------------------------
/bin/doppler:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/bin/doppler
--------------------------------------------------------------------------------
/careers/README.md:
--------------------------------------------------------------------------------
1 | Jobs at Opral (inlang & lix).
2 |
3 | Write `hello@opral.com` to apply.
4 |
--------------------------------------------------------------------------------
/careers/archive/inlang-sdk.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/careers/archive/inlang-sdk.md
--------------------------------------------------------------------------------
/careers/archive/lead-for-i18n-library.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/careers/archive/lead-for-i18n-library.md
--------------------------------------------------------------------------------
/careers/archive/senior-engineer-for-lix.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/careers/archive/senior-engineer-for-lix.md
--------------------------------------------------------------------------------
/cla-signatures.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/cla-signatures.json
--------------------------------------------------------------------------------
/cla.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/cla.md
--------------------------------------------------------------------------------
/inlang/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/README.md
--------------------------------------------------------------------------------
/inlang/assets/cli-validate.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/cli-validate.png
--------------------------------------------------------------------------------
/inlang/assets/fork-project.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/fork-project.webp
--------------------------------------------------------------------------------
/inlang/assets/graphs.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/graphs.md
--------------------------------------------------------------------------------
/inlang/assets/ide-extension/extract.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/ide-extension/extract.gif
--------------------------------------------------------------------------------
/inlang/assets/ide-extension/inline.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/ide-extension/inline.gif
--------------------------------------------------------------------------------
/inlang/assets/ide-extension/lint.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/ide-extension/lint.gif
--------------------------------------------------------------------------------
/inlang/assets/ide-extension/tooltip.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/ide-extension/tooltip.gif
--------------------------------------------------------------------------------
/inlang/assets/ide-extension/update.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/ide-extension/update.gif
--------------------------------------------------------------------------------
/inlang/assets/inlang-pipeline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/inlang-pipeline.png
--------------------------------------------------------------------------------
/inlang/assets/inlang-problem-explainer.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/inlang-problem-explainer.png
--------------------------------------------------------------------------------
/inlang/assets/logo-white-background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/logo-white-background.png
--------------------------------------------------------------------------------
/inlang/assets/logo_rounded.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/logo_rounded.png
--------------------------------------------------------------------------------
/inlang/assets/md-badges/fink-action-button.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/md-badges/fink-action-button.svg
--------------------------------------------------------------------------------
/inlang/assets/md-badges/inlang.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/md-badges/inlang.svg
--------------------------------------------------------------------------------
/inlang/assets/styleguide-mockup.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/styleguide-mockup.svg
--------------------------------------------------------------------------------
/inlang/assets/what-is-inlang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/assets/what-is-inlang.png
--------------------------------------------------------------------------------
/inlang/blog/git-as-sdk.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/blog/git-as-sdk.md
--------------------------------------------------------------------------------
/inlang/blog/inlang-refactor.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/blog/inlang-refactor.md
--------------------------------------------------------------------------------
/inlang/blog/notes-on-git-based-architecture.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/blog/notes-on-git-based-architecture.md
--------------------------------------------------------------------------------
/inlang/blog/tableOfContents.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/blog/tableOfContents.json
--------------------------------------------------------------------------------
/inlang/blog/the-next-git.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/blog/the-next-git.md
--------------------------------------------------------------------------------
/inlang/packages/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/README.md
--------------------------------------------------------------------------------
/inlang/packages/cli/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/.gitignore
--------------------------------------------------------------------------------
/inlang/packages/cli/.npmrc:
--------------------------------------------------------------------------------
1 | engine-strict=true
--------------------------------------------------------------------------------
/inlang/packages/cli/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/CHANGELOG.md
--------------------------------------------------------------------------------
/inlang/packages/cli/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/LICENSE
--------------------------------------------------------------------------------
/inlang/packages/cli/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/README.md
--------------------------------------------------------------------------------
/inlang/packages/cli/assets/automation.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/assets/automation.jpg
--------------------------------------------------------------------------------
/inlang/packages/cli/assets/cli-header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/assets/cli-header.jpg
--------------------------------------------------------------------------------
/inlang/packages/cli/assets/cli-header.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/assets/cli-header.png
--------------------------------------------------------------------------------
/inlang/packages/cli/assets/cli-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/assets/cli-icon.png
--------------------------------------------------------------------------------
/inlang/packages/cli/assets/lint.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/assets/lint.jpg
--------------------------------------------------------------------------------
/inlang/packages/cli/assets/why.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/assets/why.jpg
--------------------------------------------------------------------------------
/inlang/packages/cli/bin/run.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/bin/run.js
--------------------------------------------------------------------------------
/inlang/packages/cli/build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/build.js
--------------------------------------------------------------------------------
/inlang/packages/cli/example/messages/de.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/example/messages/de.json
--------------------------------------------------------------------------------
/inlang/packages/cli/example/messages/en.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/example/messages/en.json
--------------------------------------------------------------------------------
/inlang/packages/cli/example/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/example/package.json
--------------------------------------------------------------------------------
/inlang/packages/cli/example/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/cli/marketplace-manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/marketplace-manifest.json
--------------------------------------------------------------------------------
/inlang/packages/cli/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/package.json
--------------------------------------------------------------------------------
/inlang/packages/cli/src/commands/lint/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/src/commands/lint/index.ts
--------------------------------------------------------------------------------
/inlang/packages/cli/src/env-variables/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/src/env-variables/index.ts
--------------------------------------------------------------------------------
/inlang/packages/cli/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/src/main.ts
--------------------------------------------------------------------------------
/inlang/packages/cli/src/telemetry/capture.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/src/telemetry/capture.ts
--------------------------------------------------------------------------------
/inlang/packages/cli/src/utilities/format.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/src/utilities/format.ts
--------------------------------------------------------------------------------
/inlang/packages/cli/src/utilities/getFlag.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/src/utilities/getFlag.ts
--------------------------------------------------------------------------------
/inlang/packages/cli/src/utilities/log.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/src/utilities/log.ts
--------------------------------------------------------------------------------
/inlang/packages/cli/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/cli/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/cli/vitest.config.ts
--------------------------------------------------------------------------------
/inlang/packages/fink/.eslintrc.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/.eslintrc.cjs
--------------------------------------------------------------------------------
/inlang/packages/fink/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/.gitignore
--------------------------------------------------------------------------------
/inlang/packages/fink/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/.prettierrc
--------------------------------------------------------------------------------
/inlang/packages/fink/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/LICENSE
--------------------------------------------------------------------------------
/inlang/packages/fink/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/README.md
--------------------------------------------------------------------------------
/inlang/packages/fink/assets/cover.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/assets/cover.jpg
--------------------------------------------------------------------------------
/inlang/packages/fink/assets/editor01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/assets/editor01.png
--------------------------------------------------------------------------------
/inlang/packages/fink/assets/editor02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/assets/editor02.png
--------------------------------------------------------------------------------
/inlang/packages/fink/assets/editor03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/assets/editor03.png
--------------------------------------------------------------------------------
/inlang/packages/fink/assets/fink-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/assets/fink-image.png
--------------------------------------------------------------------------------
/inlang/packages/fink/assets/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/assets/icon.png
--------------------------------------------------------------------------------
/inlang/packages/fink/demo/bundles.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/demo/bundles.ts
--------------------------------------------------------------------------------
/inlang/packages/fink/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/index.html
--------------------------------------------------------------------------------
/inlang/packages/fink/marketplace-manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/marketplace-manifest.json
--------------------------------------------------------------------------------
/inlang/packages/fink/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/package.json
--------------------------------------------------------------------------------
/inlang/packages/fink/public/setAuthor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/public/setAuthor.png
--------------------------------------------------------------------------------
/inlang/packages/fink/public/🐦.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/public/🐦.png
--------------------------------------------------------------------------------
/inlang/packages/fink/src/components/Footer.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/components/Footer.tsx
--------------------------------------------------------------------------------
/inlang/packages/fink/src/helper/sortBundles.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/helper/sortBundles.ts
--------------------------------------------------------------------------------
/inlang/packages/fink/src/helper/timeAgo.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/helper/timeAgo.ts
--------------------------------------------------------------------------------
/inlang/packages/fink/src/helper/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/helper/types.ts
--------------------------------------------------------------------------------
/inlang/packages/fink/src/helper/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/helper/utils.ts
--------------------------------------------------------------------------------
/inlang/packages/fink/src/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/layout.tsx
--------------------------------------------------------------------------------
/inlang/packages/fink/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/main.tsx
--------------------------------------------------------------------------------
/inlang/packages/fink/src/routes/index/Page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/routes/index/Page.tsx
--------------------------------------------------------------------------------
/inlang/packages/fink/src/routes/routes.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/routes/routes.tsx
--------------------------------------------------------------------------------
/inlang/packages/fink/src/state.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/state.ts
--------------------------------------------------------------------------------
/inlang/packages/fink/src/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/src/style.css
--------------------------------------------------------------------------------
/inlang/packages/fink/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/inlang/packages/fink/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/fink/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/fink/vite.config.ts
--------------------------------------------------------------------------------
/inlang/packages/marketplace-manifest/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/marketplace-manifest/README.md
--------------------------------------------------------------------------------
/inlang/packages/marketplace-manifest/src/index.ts:
--------------------------------------------------------------------------------
1 | export { MarketplaceManifest } from "./interface.js";
2 |
--------------------------------------------------------------------------------
/inlang/packages/marketplace-registry/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/marketplace-registry/README.md
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/paraglide/paraglide-js/LICENSE
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/benchmark/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/astro/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/cli/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["inlang.vs-code-extension"]
3 | }
4 |
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/cli/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/incremental-migration/locales/de.json:
--------------------------------------------------------------------------------
1 | {
2 | "greeting": "Halleluhah {name}!"
3 | }
4 |
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/incremental-migration/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/incremental-migration/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/next-js-ssg/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/next-js-ssg/project.inlang/project_id:
--------------------------------------------------------------------------------
1 | 6938fe8b-debe-459f-9842-9bb86fd6a63e
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/next-js-ssr/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/next-js-ssr/project.inlang/project_id:
--------------------------------------------------------------------------------
1 | 6938fe8b-debe-459f-9842-9bb86fd6a63e
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/react-router/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/react/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/react/project.inlang/project_id:
--------------------------------------------------------------------------------
1 | c30a9eca-3cc4-469b-8ff3-066e6c427582
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/react/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/sveltekit/.npmrc:
--------------------------------------------------------------------------------
1 | engine-strict=true
2 |
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/sveltekit/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/sveltekit/src/routes/+layout.ts:
--------------------------------------------------------------------------------
1 | export const prerender = true;
2 |
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/vite/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/examples/vite/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/inlang/packages/paraglide/paraglide-js/src/urlpattern-polyfill/index.ts:
--------------------------------------------------------------------------------
1 | export * as x from "urlpattern-polyfill";
2 |
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/.gitignore
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/.prettierrc.json
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/.sentryignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/.sentryignore
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/LICENSE
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/Parrot V2 beta.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/Parrot V2 beta.md
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/README.md
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/changelog-35.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/changelog-54.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/changelog-54.txt
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/changelog-56.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/changelog-56.txt
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/eslint.config.js
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/manifest.figma.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/manifest.figma.ts
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/manifest.json
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/package.json
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/render.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/render.yaml
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/src/global.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/src/global.d.ts
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/src/ui/grid.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/src/ui/grid.html
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/src/ui/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/src/ui/index.html
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/src/ui/tabbar.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/src/ui/tabbar.css
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/src/ui/ui.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/src/ui/ui.css
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/src/ui/ui.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/src/ui/ui.tsx
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/src/ui/views/setup/SetupView.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/parrot-figma/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/parrot-figma/vite.config.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/i18next/.prettierrc
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/i18next/CHANGELOG.md
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/i18next/LICENSE
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/i18next/README.md
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/i18next/build.js
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/example/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/example/project.inlang/project_id:
--------------------------------------------------------------------------------
1 | 8f0f2898-ff1d-4b4e-9c24-3204555as416b874
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/i18next/package.json
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/i18next/src/index.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/src/plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/i18next/src/plugin.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/i18next/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/i18next/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/plugins/icu1/build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/icu1/build.js
--------------------------------------------------------------------------------
/inlang/packages/plugins/icu1/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/icu1/package.json
--------------------------------------------------------------------------------
/inlang/packages/plugins/icu1/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/icu1/src/index.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/icu1/src/parse.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/icu1/src/parse.test.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/icu1/src/parse.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/icu1/src/parse.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/icu1/src/plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/icu1/src/plugin.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/icu1/src/serialize.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/icu1/src/serialize.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/icu1/src/settings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/icu1/src/settings.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/icu1/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/icu1/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/plugins/inlang-message-format/example/project.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/packages/plugins/inlang-message-format/example/project.inlang/project_id:
--------------------------------------------------------------------------------
1 | 8f0f2898-ff1d-4b4e-9c24-32045416b874
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/.prettierrc
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/CHANGELOG.md
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/LICENSE
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/README.md
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/assets/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/assets/icon.png
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/build.js
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/package.json
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/src/index.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/src/plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/src/plugin.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/src/settings.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/src/settings.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/src/utilities.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/src/utilities.ts
--------------------------------------------------------------------------------
/inlang/packages/plugins/json/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/json/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/plugins/next-intl/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/next-intl/.prettierrc
--------------------------------------------------------------------------------
/inlang/packages/plugins/next-intl/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/next-intl/CHANGELOG.md
--------------------------------------------------------------------------------
/inlang/packages/plugins/next-intl/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/next-intl/LICENSE
--------------------------------------------------------------------------------
/inlang/packages/plugins/next-intl/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/next-intl/README.md
--------------------------------------------------------------------------------
/inlang/packages/plugins/next-intl/build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/next-intl/build.js
--------------------------------------------------------------------------------
/inlang/packages/plugins/next-intl/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/next-intl/package.json
--------------------------------------------------------------------------------
/inlang/packages/plugins/next-intl/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/plugins/next-intl/src/index.ts
--------------------------------------------------------------------------------
/inlang/packages/rpc/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/rpc/.prettierrc
--------------------------------------------------------------------------------
/inlang/packages/rpc/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/rpc/CHANGELOG.md
--------------------------------------------------------------------------------
/inlang/packages/rpc/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/rpc/README.md
--------------------------------------------------------------------------------
/inlang/packages/rpc/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/rpc/package.json
--------------------------------------------------------------------------------
/inlang/packages/rpc/src/client.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/rpc/src/client.ts
--------------------------------------------------------------------------------
/inlang/packages/rpc/src/functions/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/rpc/src/functions/index.ts
--------------------------------------------------------------------------------
/inlang/packages/rpc/src/index.ts:
--------------------------------------------------------------------------------
1 | export { rpc } from "./client.js";
2 |
--------------------------------------------------------------------------------
/inlang/packages/rpc/src/router.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/rpc/src/router.ts
--------------------------------------------------------------------------------
/inlang/packages/rpc/src/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/rpc/src/types.ts
--------------------------------------------------------------------------------
/inlang/packages/rpc/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/rpc/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/sdk/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/.prettierrc.json
--------------------------------------------------------------------------------
/inlang/packages/sdk/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/CHANGELOG.md
--------------------------------------------------------------------------------
/inlang/packages/sdk/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/LICENSE
--------------------------------------------------------------------------------
/inlang/packages/sdk/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/README.md
--------------------------------------------------------------------------------
/inlang/packages/sdk/assets/open-file.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/assets/open-file.svg
--------------------------------------------------------------------------------
/inlang/packages/sdk/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/eslint.config.js
--------------------------------------------------------------------------------
/inlang/packages/sdk/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/package.json
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/database/initDb.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/database/initDb.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/database/jsonPlugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/database/jsonPlugin.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/database/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/database/schema.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/helper.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/helper.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/human-id/human-id.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/human-id/human-id.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/human-id/words.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/human-id/words.test.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/human-id/words.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/human-id/words.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/index.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/json-schema/pattern.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/json-schema/pattern.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/lix/index.ts:
--------------------------------------------------------------------------------
1 | export * from "@lix-js/sdk";
2 |
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/plugin/cache.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/plugin/cache.test.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/plugin/cache.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/plugin/cache.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/plugin/errors.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/plugin/errors.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/plugin/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/plugin/schema.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/project/api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/project/api.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/project/loadProject.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/project/loadProject.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/src/project/newProject.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/src/project/newProject.ts
--------------------------------------------------------------------------------
/inlang/packages/sdk/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/sdk/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sdk/vitest.config.ts
--------------------------------------------------------------------------------
/inlang/packages/server/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/server/CHANGELOG.md
--------------------------------------------------------------------------------
/inlang/packages/server/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/server/README.md
--------------------------------------------------------------------------------
/inlang/packages/server/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/server/package.json
--------------------------------------------------------------------------------
/inlang/packages/server/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/server/src/main.ts
--------------------------------------------------------------------------------
/inlang/packages/server/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/server/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/sherlock/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/.gitignore
--------------------------------------------------------------------------------
/inlang/packages/sherlock/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/.prettierrc
--------------------------------------------------------------------------------
/inlang/packages/sherlock/.vscodeignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/.vscodeignore
--------------------------------------------------------------------------------
/inlang/packages/sherlock/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/CHANGELOG.md
--------------------------------------------------------------------------------
/inlang/packages/sherlock/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/CONTRIBUTING.md
--------------------------------------------------------------------------------
/inlang/packages/sherlock/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/LICENSE.md
--------------------------------------------------------------------------------
/inlang/packages/sherlock/MARKETPLACE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/MARKETPLACE.md
--------------------------------------------------------------------------------
/inlang/packages/sherlock/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/README.md
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/codicon.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/codicon.css
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/codicon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/codicon.ttf
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/hide-badge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/hide-badge.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/icon.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/ide-errors.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/ide-errors.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/ide-inline.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/ide-inline.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/ide-lint.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/ide-lint.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/ide-start.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/ide-start.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/ide-update.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/ide-update.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/ide01new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/ide01new.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/ide02new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/ide02new.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/ide03new.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/ide03new.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/inlang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/inlang.png
--------------------------------------------------------------------------------
/inlang/packages/sherlock/assets/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/assets/styles.css
--------------------------------------------------------------------------------
/inlang/packages/sherlock/build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/build.js
--------------------------------------------------------------------------------
/inlang/packages/sherlock/docs/customization.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/docs/customization.md
--------------------------------------------------------------------------------
/inlang/packages/sherlock/docs/quick-start.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/docs/quick-start.md
--------------------------------------------------------------------------------
/inlang/packages/sherlock/docs/video-tour.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/docs/video-tour.md
--------------------------------------------------------------------------------
/inlang/packages/sherlock/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/package.json
--------------------------------------------------------------------------------
/inlang/packages/sherlock/publish-openvsx.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/publish-openvsx.js
--------------------------------------------------------------------------------
/inlang/packages/sherlock/src/configuration.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/src/configuration.ts
--------------------------------------------------------------------------------
/inlang/packages/sherlock/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/src/main.ts
--------------------------------------------------------------------------------
/inlang/packages/sherlock/src/utilities/editor/sherlock-editor-app/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/inlang/packages/sherlock/test/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/test/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/sherlock/test/wdio.conf.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/test/wdio.conf.ts
--------------------------------------------------------------------------------
/inlang/packages/sherlock/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/sherlock/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/sherlock/vitest.config.ts
--------------------------------------------------------------------------------
/inlang/packages/telemetry-proxy/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/telemetry-proxy/.prettierrc
--------------------------------------------------------------------------------
/inlang/packages/telemetry-proxy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/telemetry-proxy/README.md
--------------------------------------------------------------------------------
/inlang/packages/telemetry-proxy/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/telemetry-proxy/package.json
--------------------------------------------------------------------------------
/inlang/packages/telemetry-proxy/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/telemetry-proxy/src/main.ts
--------------------------------------------------------------------------------
/inlang/packages/telemetry-proxy/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/telemetry-proxy/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/templates/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "ignorePatterns": ["**/*"]
3 | }
4 |
--------------------------------------------------------------------------------
/inlang/packages/templates/.gitignore:
--------------------------------------------------------------------------------
1 | **/package-lock.json
--------------------------------------------------------------------------------
/inlang/packages/templates/plugin/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | dist
3 | .DS_Store
--------------------------------------------------------------------------------
/inlang/packages/templates/plugin/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/templates/plugin/.prettierrc
--------------------------------------------------------------------------------
/inlang/packages/templates/plugin/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["inlang.vs-code-extension"]
3 | }
4 |
--------------------------------------------------------------------------------
/inlang/packages/templates/plugin/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/templates/plugin/package.json
--------------------------------------------------------------------------------
/inlang/packages/templates/plugin/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/templates/plugin/src/index.ts
--------------------------------------------------------------------------------
/inlang/packages/templates/plugin/src/plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/templates/plugin/src/plugin.ts
--------------------------------------------------------------------------------
/inlang/packages/templates/plugin/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/templates/plugin/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/website/.gitignore:
--------------------------------------------------------------------------------
1 | vite.config.ts.timestamp*
--------------------------------------------------------------------------------
/inlang/packages/website/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/.prettierrc
--------------------------------------------------------------------------------
/inlang/packages/website/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/CHANGELOG.md
--------------------------------------------------------------------------------
/inlang/packages/website/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/README.md
--------------------------------------------------------------------------------
/inlang/packages/website/messages/de.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/messages/de.json
--------------------------------------------------------------------------------
/inlang/packages/website/messages/en.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/messages/en.json
--------------------------------------------------------------------------------
/inlang/packages/website/messages/es.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/messages/es.json
--------------------------------------------------------------------------------
/inlang/packages/website/messages/fr.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/messages/fr.json
--------------------------------------------------------------------------------
/inlang/packages/website/messages/it.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/messages/it.json
--------------------------------------------------------------------------------
/inlang/packages/website/messages/pt-BR.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/messages/pt-BR.json
--------------------------------------------------------------------------------
/inlang/packages/website/messages/sk.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/messages/sk.json
--------------------------------------------------------------------------------
/inlang/packages/website/messages/zh.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/messages/zh.json
--------------------------------------------------------------------------------
/inlang/packages/website/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/package.json
--------------------------------------------------------------------------------
/inlang/packages/website/postcss.config.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/postcss.config.cjs
--------------------------------------------------------------------------------
/inlang/packages/website/scripts/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/scripts/README.md
--------------------------------------------------------------------------------
/inlang/packages/website/scripts/generateOG.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/scripts/generateOG.js
--------------------------------------------------------------------------------
/inlang/packages/website/src/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/README.md
--------------------------------------------------------------------------------
/inlang/packages/website/src/app.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/app.d.ts
--------------------------------------------------------------------------------
/inlang/packages/website/src/pages/g/+Page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/pages/g/+Page.tsx
--------------------------------------------------------------------------------
/inlang/packages/website/src/pages/m/+Page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/pages/m/+Page.tsx
--------------------------------------------------------------------------------
/inlang/packages/website/src/pages/m/+route.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/pages/m/+route.ts
--------------------------------------------------------------------------------
/inlang/packages/website/src/renderer/+Root.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/renderer/+Root.tsx
--------------------------------------------------------------------------------
/inlang/packages/website/src/renderer/Link.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/renderer/Link.tsx
--------------------------------------------------------------------------------
/inlang/packages/website/src/renderer/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/renderer/README.md
--------------------------------------------------------------------------------
/inlang/packages/website/src/renderer/app.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/renderer/app.css
--------------------------------------------------------------------------------
/inlang/packages/website/src/renderer/state.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/renderer/state.ts
--------------------------------------------------------------------------------
/inlang/packages/website/src/renderer/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/renderer/types.ts
--------------------------------------------------------------------------------
/inlang/packages/website/src/server/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/server/main.ts
--------------------------------------------------------------------------------
/inlang/packages/website/src/server/router.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/server/router.ts
--------------------------------------------------------------------------------
/inlang/packages/website/src/services/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/src/services/README.md
--------------------------------------------------------------------------------
/inlang/packages/website/tailwind-color-plugin/README.md:
--------------------------------------------------------------------------------
1 | DEPRECATED, remove with next possibility
--------------------------------------------------------------------------------
/inlang/packages/website/tailwind.config.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/tailwind.config.cjs
--------------------------------------------------------------------------------
/inlang/packages/website/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/tsconfig.json
--------------------------------------------------------------------------------
/inlang/packages/website/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/packages/website/vite.config.ts
--------------------------------------------------------------------------------
/inlang/packages/website/website.inlang/.gitignore:
--------------------------------------------------------------------------------
1 | cache
--------------------------------------------------------------------------------
/inlang/rfcs/@inlang_core_lint/RFC.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/@inlang_core_lint/RFC.md
--------------------------------------------------------------------------------
/inlang/rfcs/@inlang_core_lint/experiment-1.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/@inlang_core_lint/experiment-1.ts
--------------------------------------------------------------------------------
/inlang/rfcs/@inlang_core_lint/experiment-2.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/@inlang_core_lint/experiment-2.ts
--------------------------------------------------------------------------------
/inlang/rfcs/@inlang_core_lint/experiment-3.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/@inlang_core_lint/experiment-3.ts
--------------------------------------------------------------------------------
/inlang/rfcs/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/README.md
--------------------------------------------------------------------------------
/inlang/rfcs/core-architecture/RFC.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/core-architecture/RFC.md
--------------------------------------------------------------------------------
/inlang/rfcs/git-sdk-requirements/RFC.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/git-sdk-requirements/RFC.md
--------------------------------------------------------------------------------
/inlang/rfcs/message-first-architecture/RFC.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/message-first-architecture/RFC.md
--------------------------------------------------------------------------------
/inlang/rfcs/plugin-api/RFC.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/plugin-api/RFC.md
--------------------------------------------------------------------------------
/inlang/rfcs/plugin-api/experiment-1.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/plugin-api/experiment-1.ts
--------------------------------------------------------------------------------
/inlang/rfcs/plugin-api/experiment-2.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/plugin-api/experiment-2.ts
--------------------------------------------------------------------------------
/inlang/rfcs/plugin-api/experiment-3.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/plugin-api/experiment-3.ts
--------------------------------------------------------------------------------
/inlang/rfcs/plugin-api/experiment-4.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/plugin-api/experiment-4.ts
--------------------------------------------------------------------------------
/inlang/rfcs/sdk-js/RFC.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/sdk-js/RFC.md
--------------------------------------------------------------------------------
/inlang/rfcs/tech-stack/RFC.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/inlang/rfcs/tech-stack/RFC.md
--------------------------------------------------------------------------------
/nx.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/nx.json
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/package.json
--------------------------------------------------------------------------------
/packages/csv-app/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/.gitignore
--------------------------------------------------------------------------------
/packages/csv-app/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/.prettierrc.json
--------------------------------------------------------------------------------
/packages/csv-app/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/csv-app/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/LICENSE
--------------------------------------------------------------------------------
/packages/csv-app/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/eslint.config.js
--------------------------------------------------------------------------------
/packages/csv-app/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/index.html
--------------------------------------------------------------------------------
/packages/csv-app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/package.json
--------------------------------------------------------------------------------
/packages/csv-app/public/auth-dialog-image.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/public/auth-dialog-image.png
--------------------------------------------------------------------------------
/packages/csv-app/public/branch-icon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/public/branch-icon.svg
--------------------------------------------------------------------------------
/packages/csv-app/public/cap-table/changes.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/public/cap-table/changes.json
--------------------------------------------------------------------------------
/packages/csv-app/public/cap-table/commits.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/public/cap-table/commits.json
--------------------------------------------------------------------------------
/packages/csv-app/public/captable-cover-big.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/public/captable-cover-big.png
--------------------------------------------------------------------------------
/packages/csv-app/public/discord-icon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/public/discord-icon.svg
--------------------------------------------------------------------------------
/packages/csv-app/public/github-icon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/public/github-icon.svg
--------------------------------------------------------------------------------
/packages/csv-app/public/lix.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/public/lix.svg
--------------------------------------------------------------------------------
/packages/csv-app/public/x-icon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/public/x-icon.svg
--------------------------------------------------------------------------------
/packages/csv-app/src/components/CellGraph.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/components/CellGraph.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/components/ChangeSet.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/components/ChangeSet.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/components/CustomLink.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/components/CustomLink.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/components/RowDiff.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/components/RowDiff.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/helper/saveLixToOpfs.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/helper/saveLixToOpfs.ts
--------------------------------------------------------------------------------
/packages/csv-app/src/helper/timeAgo.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/helper/timeAgo.ts
--------------------------------------------------------------------------------
/packages/csv-app/src/layouts/RootLayout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/layouts/RootLayout.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/main.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/routes.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/routes.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/routes/changes/Page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/routes/changes/Page.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/routes/conflicts/Page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/routes/conflicts/Page.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/routes/editor/Page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/routes/editor/Page.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/routes/index/DemoCard.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/routes/index/DemoCard.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/routes/index/Dropzone.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/routes/index/Dropzone.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/routes/index/Page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/routes/index/Page.tsx
--------------------------------------------------------------------------------
/packages/csv-app/src/state-active-file.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/state-active-file.ts
--------------------------------------------------------------------------------
/packages/csv-app/src/state.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/state.ts
--------------------------------------------------------------------------------
/packages/csv-app/src/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/src/style.css
--------------------------------------------------------------------------------
/packages/csv-app/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 |
--------------------------------------------------------------------------------
/packages/csv-app/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/tsconfig.json
--------------------------------------------------------------------------------
/packages/csv-app/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/csv-app/vite.config.ts
--------------------------------------------------------------------------------
/packages/flashtype/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/.gitignore
--------------------------------------------------------------------------------
/packages/flashtype/.infisical.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/.infisical.json
--------------------------------------------------------------------------------
/packages/flashtype/.oxlintrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/.oxlintrc.json
--------------------------------------------------------------------------------
/packages/flashtype/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": true
3 | }
4 |
--------------------------------------------------------------------------------
/packages/flashtype/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/LICENSE
--------------------------------------------------------------------------------
/packages/flashtype/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/README.md
--------------------------------------------------------------------------------
/packages/flashtype/components.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/components.json
--------------------------------------------------------------------------------
/packages/flashtype/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/index.html
--------------------------------------------------------------------------------
/packages/flashtype/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/package.json
--------------------------------------------------------------------------------
/packages/flashtype/public/manifest.webmanifest:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/public/manifest.webmanifest
--------------------------------------------------------------------------------
/packages/flashtype/public/sw.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/public/sw.js
--------------------------------------------------------------------------------
/packages/flashtype/setup-tests.ts:
--------------------------------------------------------------------------------
1 | import "@testing-library/jest-dom";
2 |
--------------------------------------------------------------------------------
/packages/flashtype/src/app/central-panel.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/central-panel.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/import-file.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/import-file.test.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/app/import-file.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/import-file.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/app/landing-screen.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/landing-screen.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/layout-shell.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/layout-shell.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/panel-utils.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/panel-utils.test.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/app/panel-utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/panel-utils.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/app/panel-v2.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/panel-v2.test.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/panel-v2.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/panel-v2.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/panel.module.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/panel.module.css
--------------------------------------------------------------------------------
/packages/flashtype/src/app/pending-view.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/pending-view.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/app/react-view.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/react-view.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/side-panel.test.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/side-panel.test.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/side-panel.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/side-panel.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/status-bar.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/status-bar.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/theme.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/theme.css
--------------------------------------------------------------------------------
/packages/flashtype/src/app/top-bar/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/top-bar/index.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/types.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/app/ui-state.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/ui-state.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/app/view-context.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/view-context.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/app/view-registry.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/view-registry.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/app/welcome-screen.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/app/welcome-screen.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/components/diff.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/components/diff.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/components/ui/input.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/components/ui/input.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/components/ui/sheet.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/components/ui/sheet.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/env-variables.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/env-variables.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/hooks/use-mobile.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/hooks/use-mobile.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/index.css
--------------------------------------------------------------------------------
/packages/flashtype/src/lib/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/lib/utils.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/main.error.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/main.error.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/main.tsx
--------------------------------------------------------------------------------
/packages/flashtype/src/queries.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/queries.test.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/queries.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/queries.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/seed/AGENTS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/seed/AGENTS.md
--------------------------------------------------------------------------------
/packages/flashtype/src/seed/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/seed/README.md
--------------------------------------------------------------------------------
/packages/flashtype/src/seed/changelog.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/seed/changelog.md
--------------------------------------------------------------------------------
/packages/flashtype/src/seed/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/seed/index.ts
--------------------------------------------------------------------------------
/packages/flashtype/src/seed/meeting-notes.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/seed/meeting-notes.md
--------------------------------------------------------------------------------
/packages/flashtype/src/seed/welcome.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/seed/welcome.md
--------------------------------------------------------------------------------
/packages/flashtype/src/seed/what-is-lix.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/src/seed/what-is-lix.md
--------------------------------------------------------------------------------
/packages/flashtype/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/tsconfig.json
--------------------------------------------------------------------------------
/packages/flashtype/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/vite.config.ts
--------------------------------------------------------------------------------
/packages/flashtype/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/vitest.config.ts
--------------------------------------------------------------------------------
/packages/flashtype/wrangler.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/flashtype/wrangler.json
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/.gitignore:
--------------------------------------------------------------------------------
1 | dist
2 | node_modules
3 |
4 |
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/.oxlintrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/.oxlintrc.json
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/.prettierrc.json
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/package.json
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/create-lix-agent.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/create-lix-agent.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/index.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/proposal-mode.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/proposal-mode.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/send-message.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/send-message.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/system-prompt.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/system-prompt.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/tools/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/tools/index.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/tools/list-files.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/tools/list-files.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/tools/read-file.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/tools/read-file.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/tools/sql-select.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/tools/sql-select.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/tools/write-file.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/tools/write-file.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/src/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/src/types.ts
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/agent-sdk/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/agent-sdk/vitest.config.ts
--------------------------------------------------------------------------------
/packages/lix/docs-restructure-proposal.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs-restructure-proposal.md
--------------------------------------------------------------------------------
/packages/lix/docs/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/.gitignore
--------------------------------------------------------------------------------
/packages/lix/docs/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 80
3 | }
4 |
--------------------------------------------------------------------------------
/packages/lix/docs/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/package.json
--------------------------------------------------------------------------------
/packages/lix/docs/postcss.config.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/postcss.config.cjs
--------------------------------------------------------------------------------
/packages/lix/docs/rspress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/rspress.config.ts
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/architecture.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/architecture.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/attribution.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/attribution.mdx
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/conversations.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/conversations.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/diffs.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/diffs.mdx
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/environment-api.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/environment-api.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/examples/diffs.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/examples/diffs.ts
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/examples/history.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/examples/history.ts
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/examples/restore.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/examples/restore.ts
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/filesystem.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/filesystem.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/getting-started.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/getting-started.mdx
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/history.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/history.mdx
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/key-value.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/key-value.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/labels.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/labels.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/logging.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/logging.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/metadata.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/metadata.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/persistence.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/persistence.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/plugins.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/plugins.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/restore.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/restore.mdx
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/schemas.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/schemas.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/sql-interface.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/sql-interface.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/testing.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/testing.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/undo-redo.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/undo-redo.mdx
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/validation-rules.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/validation-rules.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/versions.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/versions.mdx
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/what-is-lix.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/what-is-lix.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/docs/writer-key.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/docs/writer-key.md
--------------------------------------------------------------------------------
/packages/lix/docs/src/index.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/index.mdx
--------------------------------------------------------------------------------
/packages/lix/docs/src/plugins/index.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/plugins/index.mdx
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/a vs b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/a vs b.png
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/blame.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/blame.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/comments.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/comments.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/diff.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/diff.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/favicon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/favicon.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/fink2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/fink2.png
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/flashtype.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/flashtype.jpg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/flashtype.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/flashtype.png
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/history.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/history.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/icons/python.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/icons/python.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/inlang.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/inlang.png
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/lix-features.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/lix-features.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/lix.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/lix.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/logo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/logo.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/open_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/open_file.png
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/prosemirror.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/prosemirror.png
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/restore.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/restore.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/traceability.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/traceability.png
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/undo-redo.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/undo-redo.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/usecases.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/usecases.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/versions.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/versions.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/public/vite.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/public/vite.svg
--------------------------------------------------------------------------------
/packages/lix/docs/src/styles/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/src/styles/index.css
--------------------------------------------------------------------------------
/packages/lix/docs/theme/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/theme/index.tsx
--------------------------------------------------------------------------------
/packages/lix/docs/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/vitest.config.ts
--------------------------------------------------------------------------------
/packages/lix/docs/wrangler.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/docs/wrangler.json
--------------------------------------------------------------------------------
/packages/lix/file-manager/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/.gitignore
--------------------------------------------------------------------------------
/packages/lix/file-manager/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/.prettierrc.json
--------------------------------------------------------------------------------
/packages/lix/file-manager/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/lix/file-manager/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/LICENSE
--------------------------------------------------------------------------------
/packages/lix/file-manager/components.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/components.json
--------------------------------------------------------------------------------
/packages/lix/file-manager/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/eslint.config.js
--------------------------------------------------------------------------------
/packages/lix/file-manager/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/index.html
--------------------------------------------------------------------------------
/packages/lix/file-manager/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/package.json
--------------------------------------------------------------------------------
/packages/lix/file-manager/postcss.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/postcss.config.js
--------------------------------------------------------------------------------
/packages/lix/file-manager/public/lix.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/public/lix.svg
--------------------------------------------------------------------------------
/packages/lix/file-manager/public/x-icon.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/public/x-icon.svg
--------------------------------------------------------------------------------
/packages/lix/file-manager/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/src/index.css
--------------------------------------------------------------------------------
/packages/lix/file-manager/src/lib/utils.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/src/lib/utils.ts
--------------------------------------------------------------------------------
/packages/lix/file-manager/src/main.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/src/main.tsx
--------------------------------------------------------------------------------
/packages/lix/file-manager/src/routes.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/src/routes.tsx
--------------------------------------------------------------------------------
/packages/lix/file-manager/src/state.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/src/state.ts
--------------------------------------------------------------------------------
/packages/lix/file-manager/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
3 |
--------------------------------------------------------------------------------
/packages/lix/file-manager/tailwind.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/tailwind.config.js
--------------------------------------------------------------------------------
/packages/lix/file-manager/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/file-manager/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/file-manager/vite.config.ts
--------------------------------------------------------------------------------
/packages/lix/host/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/host/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/lix/host/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/host/LICENSE
--------------------------------------------------------------------------------
/packages/lix/host/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/host/README.md
--------------------------------------------------------------------------------
/packages/lix/host/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/host/package.json
--------------------------------------------------------------------------------
/packages/lix/host/public/robots.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/host/public/robots.txt
--------------------------------------------------------------------------------
/packages/lix/host/public/sitemap.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/host/public/sitemap.xml
--------------------------------------------------------------------------------
/packages/lix/host/src/main.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/host/src/main.ts
--------------------------------------------------------------------------------
/packages/lix/host/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/host/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/html-diff/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/.gitignore
--------------------------------------------------------------------------------
/packages/lix/html-diff/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 80
3 | }
4 |
--------------------------------------------------------------------------------
/packages/lix/html-diff/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/lix/html-diff/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/CONTRIBUTING.md
--------------------------------------------------------------------------------
/packages/lix/html-diff/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/LICENSE
--------------------------------------------------------------------------------
/packages/lix/html-diff/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/README.md
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/_meta.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/docs/_meta.json
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/examples/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/docs/examples/index.md
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/guide/_meta.json:
--------------------------------------------------------------------------------
1 | ["index"]
2 |
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/guide/index.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/docs/guide/index.mdx
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/guide/styling.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/docs/guide/styling.md
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/index.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/docs/index.md
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/playground.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/docs/playground.mdx
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/public/diff.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/docs/public/diff.svg
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/styles/index.css:
--------------------------------------------------------------------------------
1 | @import "tailwindcss";
2 |
--------------------------------------------------------------------------------
/packages/lix/html-diff/docs/test-cases.mdx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/docs/test-cases.mdx
--------------------------------------------------------------------------------
/packages/lix/html-diff/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/index.html
--------------------------------------------------------------------------------
/packages/lix/html-diff/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/package.json
--------------------------------------------------------------------------------
/packages/lix/html-diff/postcss.config.cjs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/postcss.config.cjs
--------------------------------------------------------------------------------
/packages/lix/html-diff/rspress.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/rspress.config.ts
--------------------------------------------------------------------------------
/packages/lix/html-diff/src/default.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/src/default.css
--------------------------------------------------------------------------------
/packages/lix/html-diff/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/src/index.ts
--------------------------------------------------------------------------------
/packages/lix/html-diff/src/render-html-diff.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/src/render-html-diff.ts
--------------------------------------------------------------------------------
/packages/lix/html-diff/src/test-cases.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/src/test-cases.ts
--------------------------------------------------------------------------------
/packages/lix/html-diff/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/html-diff/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/vitest.config.ts
--------------------------------------------------------------------------------
/packages/lix/html-diff/wrangler.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/html-diff/wrangler.json
--------------------------------------------------------------------------------
/packages/lix/inspector/.gitignore:
--------------------------------------------------------------------------------
1 | dist
2 | build
--------------------------------------------------------------------------------
/packages/lix/inspector/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/README.md
--------------------------------------------------------------------------------
/packages/lix/inspector/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/index.html
--------------------------------------------------------------------------------
/packages/lix/inspector/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/package.json
--------------------------------------------------------------------------------
/packages/lix/inspector/src/App.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/src/App.tsx
--------------------------------------------------------------------------------
/packages/lix/inspector/src/context.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/src/context.tsx
--------------------------------------------------------------------------------
/packages/lix/inspector/src/hooks/use-lix.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/src/hooks/use-lix.ts
--------------------------------------------------------------------------------
/packages/lix/inspector/src/hooks/use-query.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/src/hooks/use-query.ts
--------------------------------------------------------------------------------
/packages/lix/inspector/src/index.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/src/index.tsx
--------------------------------------------------------------------------------
/packages/lix/inspector/src/styles.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/src/styles.css
--------------------------------------------------------------------------------
/packages/lix/inspector/src/vite-env.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/src/vite-env.d.ts
--------------------------------------------------------------------------------
/packages/lix/inspector/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/inspector/vite.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/inspector/vite.config.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": true
3 | }
4 |
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/LICENSE
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/README.md
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/eslint.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/eslint.config.js
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/package.json
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/src/applyChanges.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/src/applyChanges.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/src/detectChanges.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/src/detectChanges.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/src/index.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/src/renderDiff.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/src/renderDiff.test.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/src/renderDiff.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/src/renderDiff.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/src/schemas/cell.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/src/schemas/cell.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/src/schemas/header.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/src/schemas/header.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/src/schemas/row.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/src/schemas/row.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-csv/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-csv/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/plugin-json/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": true
3 | }
4 |
--------------------------------------------------------------------------------
/packages/lix/plugin-json/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/lix/plugin-json/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/LICENSE
--------------------------------------------------------------------------------
/packages/lix/plugin-json/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/README.md
--------------------------------------------------------------------------------
/packages/lix/plugin-json/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/package.json
--------------------------------------------------------------------------------
/packages/lix/plugin-json/rolldown.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/rolldown.config.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-json/src/apply-changes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/src/apply-changes.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-json/src/detect-changes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/src/detect-changes.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-json/src/e2e.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/src/e2e.test.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-json/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/src/index.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-json/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-json/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/plugin-md/.oxlintrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/.oxlintrc.json
--------------------------------------------------------------------------------
/packages/lix/plugin-md/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": true
3 | }
4 |
--------------------------------------------------------------------------------
/packages/lix/plugin-md/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/lix/plugin-md/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/LICENSE
--------------------------------------------------------------------------------
/packages/lix/plugin-md/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/README.md
--------------------------------------------------------------------------------
/packages/lix/plugin-md/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/package.json
--------------------------------------------------------------------------------
/packages/lix/plugin-md/rolldown.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/rolldown.config.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-md/src/apply-changes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/src/apply-changes.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-md/src/detect-changes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/src/detect-changes.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-md/src/e2e.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/src/e2e.test.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-md/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/src/index.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-md/src/node-id-prefix.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/src/node-id-prefix.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-md/src/render-diff.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/src/render-diff.test.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-md/src/render-diff.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/src/render-diff.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-md/src/sync-node-ids.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/src/sync-node-ids.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-md/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/plugin-md/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-md/vitest.config.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-prosemirror/.oxlintrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-prosemirror/.oxlintrc.json
--------------------------------------------------------------------------------
/packages/lix/plugin-prosemirror/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": true
3 | }
4 |
--------------------------------------------------------------------------------
/packages/lix/plugin-prosemirror/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-prosemirror/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/lix/plugin-prosemirror/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-prosemirror/LICENSE
--------------------------------------------------------------------------------
/packages/lix/plugin-prosemirror/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-prosemirror/README.md
--------------------------------------------------------------------------------
/packages/lix/plugin-prosemirror/example/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
--------------------------------------------------------------------------------
/packages/lix/plugin-prosemirror/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-prosemirror/package.json
--------------------------------------------------------------------------------
/packages/lix/plugin-prosemirror/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-prosemirror/src/index.ts
--------------------------------------------------------------------------------
/packages/lix/plugin-prosemirror/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/plugin-prosemirror/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/react-utils/.oxlintrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/.oxlintrc.json
--------------------------------------------------------------------------------
/packages/lix/react-utils/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": true
3 | }
4 |
--------------------------------------------------------------------------------
/packages/lix/react-utils/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/LICENSE
--------------------------------------------------------------------------------
/packages/lix/react-utils/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/README.md
--------------------------------------------------------------------------------
/packages/lix/react-utils/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/package.json
--------------------------------------------------------------------------------
/packages/lix/react-utils/src/hooks/use-lix.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/src/hooks/use-lix.ts
--------------------------------------------------------------------------------
/packages/lix/react-utils/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/src/index.ts
--------------------------------------------------------------------------------
/packages/lix/react-utils/src/provider.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/src/provider.tsx
--------------------------------------------------------------------------------
/packages/lix/react-utils/test-setup.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/test-setup.ts
--------------------------------------------------------------------------------
/packages/lix/react-utils/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/react-utils/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/react-utils/vitest.config.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/.gitignore
--------------------------------------------------------------------------------
/packages/lix/sdk/.oxlintrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/.oxlintrc.json
--------------------------------------------------------------------------------
/packages/lix/sdk/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/.prettierrc.json
--------------------------------------------------------------------------------
/packages/lix/sdk/AGENTS.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/AGENTS.md
--------------------------------------------------------------------------------
/packages/lix/sdk/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/lix/sdk/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/LICENSE
--------------------------------------------------------------------------------
/packages/lix/sdk/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/README.md
--------------------------------------------------------------------------------
/packages/lix/sdk/assets/banner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/assets/banner.png
--------------------------------------------------------------------------------
/packages/lix/sdk/assets/diff-examples.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/assets/diff-examples.svg
--------------------------------------------------------------------------------
/packages/lix/sdk/assets/fm-automate.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/assets/fm-automate.svg
--------------------------------------------------------------------------------
/packages/lix/sdk/assets/interop.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/assets/interop.png
--------------------------------------------------------------------------------
/packages/lix/sdk/assets/open_file.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/assets/open_file.png
--------------------------------------------------------------------------------
/packages/lix/sdk/assets/use_cases.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/assets/use_cases.png
--------------------------------------------------------------------------------
/packages/lix/sdk/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/package.json
--------------------------------------------------------------------------------
/packages/lix/sdk/scripts/build.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/scripts/build.js
--------------------------------------------------------------------------------
/packages/lix/sdk/scripts/embed-sqlite-wasm.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/scripts/embed-sqlite-wasm.js
--------------------------------------------------------------------------------
/packages/lix/sdk/src/account/create-account.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/account/create-account.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/account/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/account/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/account/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/account/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/account/switch-account.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/account/switch-account.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/change-author/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/change-author/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/change-conflict/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/change-conflict/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/change-proposal/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/change-proposal/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/change-set/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/change-set/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/change-set/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/change-set/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/change/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/change/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/change/schema.bench.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/change/schema.bench.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/change/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/change/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/change/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/change/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/commit/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/commit/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/commit/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/commit/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/conversation/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/conversation/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/database/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/database/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/database/init-db.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/database/init-db.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/database/kysely/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/database/kysely/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/database/nano-id.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/database/nano-id.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/database/nano-id.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/database/nano-id.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/database/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/database/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/database/sqlite/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/database/sqlite/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/diff/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/diff/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/engine/boot.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/engine/boot.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/engine/boot.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/engine/boot.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/engine/entity-views/index.ts:
--------------------------------------------------------------------------------
1 | export * from "./types.js";
2 |
--------------------------------------------------------------------------------
/packages/lix/sdk/src/engine/execute-sync.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/engine/execute-sync.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/engine/explain-query.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/engine/explain-query.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/engine/functions/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/engine/functions/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/engine/index.ts:
--------------------------------------------------------------------------------
1 | export type { LixEngine } from "./boot.js";
2 |
--------------------------------------------------------------------------------
/packages/lix/sdk/src/entity/eb-entity.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/entity/eb-entity.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/entity/eb-entity.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/entity/eb-entity.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/entity/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/entity/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/entity/types.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/entity/types.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/environment/api.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/environment/api.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/environment/api.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/environment/api.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/environment/in-memory.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/environment/in-memory.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/environment/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/environment/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/environment/opfs-sah.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/environment/opfs-sah.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/filesystem/file/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/filesystem/file/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/filesystem/fs.bench.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/filesystem/fs.bench.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/filesystem/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/filesystem/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/filesystem/path.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/filesystem/path.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/filesystem/path.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/filesystem/path.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/filesystem/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/filesystem/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/filesystem/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/filesystem/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/filesystem/util/glob.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/filesystem/util/glob.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/hooks/create-hooks.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/hooks/create-hooks.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/hooks/index.ts:
--------------------------------------------------------------------------------
1 | export type { LixHooks } from "./create-hooks.js";
2 |
--------------------------------------------------------------------------------
/packages/lix/sdk/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/key-value/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/key-value/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/key-value/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/key-value/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/label/create-label.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/label/create-label.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/label/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/label/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/label/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/label/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/lix/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/lix/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/lix/new-lix.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/lix/new-lix.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/lix/new-lix.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/lix/new-lix.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/lix/open-lix.bench.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/lix/open-lix.bench.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/lix/open-lix.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/lix/open-lix.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/lix/open-lix.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/lix/open-lix.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/log/create-lix-own-log.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/log/create-lix-own-log.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/log/create-log.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/log/create-log.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/log/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/log/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/log/schema-definition.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/log/schema-definition.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/log/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/log/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/observe/create-observe.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/observe/create-observe.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/observe/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/observe/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/observe/lix-observable.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/observe/lix-observable.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/plugin/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/plugin/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/plugin/lix-plugin.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/plugin/lix-plugin.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/plugin/lix-plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/plugin/lix-plugin.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/plugin/query-sync.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/plugin/query-sync.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/plugin/query-sync.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/plugin/query-sync.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/query-filter/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/query-filter/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/snapshot/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/snapshot/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/snapshot/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/snapshot/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state-history/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state-history/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/README.md
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/cache-v2/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/cache-v2/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/cache/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/cache/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/schema.bench.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/schema.bench.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/transition.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/transition.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/views/state.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/views/state.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/vtable/commit.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/vtable/commit.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/vtable/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/vtable/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/vtable/vtable.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/vtable/vtable.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/state/writer.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/state/writer.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/stored-schema/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/stored-schema/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/sync/merge-state.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/sync/merge-state.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/sync/push-to-server.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/sync/push-to-server.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/sync/sync-process.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/sync/sync-process.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/test-utilities/simulation-test/chaotic-timestamp-simulation.ts:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/lix/sdk/src/types/fs.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/types/fs.d.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/version/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/version/index.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/version/schema.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/version/schema.test.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/src/version/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/src/version/schema.ts
--------------------------------------------------------------------------------
/packages/lix/sdk/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/tsconfig.json
--------------------------------------------------------------------------------
/packages/lix/sdk/vitest.config.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/sdk/vitest.config.ts
--------------------------------------------------------------------------------
/packages/lix/server-protocol-schema/.gitignore:
--------------------------------------------------------------------------------
1 | dist/
2 | node_modules/
3 |
--------------------------------------------------------------------------------
/packages/lix/server-protocol-schema/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": true
3 | }
4 |
--------------------------------------------------------------------------------
/packages/lix/server-protocol-schema/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["42crunch.vscode-openapi"]
3 | }
4 |
--------------------------------------------------------------------------------
/packages/lix/server-protocol-schema/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/lix/server-protocol-schema/LICENSE
--------------------------------------------------------------------------------
/packages/markdown-wc-doc-elements/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc-doc-elements/LICENSE
--------------------------------------------------------------------------------
/packages/markdown-wc-doc-elements/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc-doc-elements/README.md
--------------------------------------------------------------------------------
/packages/markdown-wc/.prettierrc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/.prettierrc
--------------------------------------------------------------------------------
/packages/markdown-wc/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/markdown-wc/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/LICENSE
--------------------------------------------------------------------------------
/packages/markdown-wc/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/README.md
--------------------------------------------------------------------------------
/packages/markdown-wc/assets/dinosaur.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/assets/dinosaur.svg
--------------------------------------------------------------------------------
/packages/markdown-wc/doc-elements.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/doc-elements.html
--------------------------------------------------------------------------------
/packages/markdown-wc/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/index.html
--------------------------------------------------------------------------------
/packages/markdown-wc/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/package.json
--------------------------------------------------------------------------------
/packages/markdown-wc/rolldown.config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/rolldown.config.js
--------------------------------------------------------------------------------
/packages/markdown-wc/src/ast/schemas.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/ast/schemas.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/ast/validate-ast.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/ast/validate-ast.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/html/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/html/index.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/index.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/inline-styles.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/inline-styles.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/parse.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/parse.test.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/parse.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/parse.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/preprocess.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/preprocess.test.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/preprocess.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/preprocess.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/tiptap/e2e.test.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/tiptap/e2e.test.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/tiptap/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/tiptap/index.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/tiptap/nodes.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/tiptap/nodes.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/tiptap/shortcuts.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/tiptap/shortcuts.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/src/walking-dinosaur.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/src/walking-dinosaur.ts
--------------------------------------------------------------------------------
/packages/markdown-wc/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/markdown-wc/tsconfig.json
--------------------------------------------------------------------------------
/packages/opral-website/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/opral-website/LICENSE
--------------------------------------------------------------------------------
/packages/opral-website/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/opral-website/index.html
--------------------------------------------------------------------------------
/packages/papier/papier-app/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/papier/papier-app/.prettierrc.json
--------------------------------------------------------------------------------
/packages/papier/papier-app/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/papier/papier-app/LICENSE
--------------------------------------------------------------------------------
/packages/papier/papier-app/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/papier/papier-app/README.md
--------------------------------------------------------------------------------
/packages/papier/papier-app/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/papier/papier-app/package.json
--------------------------------------------------------------------------------
/packages/papier/papier-app/src/index.ts:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/papier/papier-app/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/papier/papier-app/tsconfig.json
--------------------------------------------------------------------------------
/packages/papier/papier-file-format/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/papier/papier-file-format/LICENSE
--------------------------------------------------------------------------------
/packages/papier/papier-file-format/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/papier/papier-file-format/README.md
--------------------------------------------------------------------------------
/packages/papier/papier-file-format/src/index.ts:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/packages/tsconfig/CHANGELOG.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/tsconfig/CHANGELOG.md
--------------------------------------------------------------------------------
/packages/tsconfig/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/tsconfig/package.json
--------------------------------------------------------------------------------
/packages/tsconfig/tsconfig.default.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/tsconfig/tsconfig.default.json
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/.prettierrc.json
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/LICENSE
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/README.md
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/package.json
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/src/builder.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/src/builder.ts
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/src/index.ts
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/src/merge.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/src/merge.ts
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/src/plain-text.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/src/plain-text.ts
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/src/schema.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/src/schema.ts
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/src/validate.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/src/validate.ts
--------------------------------------------------------------------------------
/packages/zettel/zettel-ast/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-ast/tsconfig.json
--------------------------------------------------------------------------------
/packages/zettel/zettel-html/.prettierrc.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-html/.prettierrc.json
--------------------------------------------------------------------------------
/packages/zettel/zettel-html/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-html/LICENSE
--------------------------------------------------------------------------------
/packages/zettel/zettel-html/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-html/README.md
--------------------------------------------------------------------------------
/packages/zettel/zettel-html/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-html/package.json
--------------------------------------------------------------------------------
/packages/zettel/zettel-html/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-html/src/index.ts
--------------------------------------------------------------------------------
/packages/zettel/zettel-html/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-html/tsconfig.json
--------------------------------------------------------------------------------
/packages/zettel/zettel-lexical/.prettierrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 80
3 | }
4 |
--------------------------------------------------------------------------------
/packages/zettel/zettel-lexical/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-lexical/LICENSE
--------------------------------------------------------------------------------
/packages/zettel/zettel-lexical/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-lexical/README.md
--------------------------------------------------------------------------------
/packages/zettel/zettel-lexical/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-lexical/index.html
--------------------------------------------------------------------------------
/packages/zettel/zettel-lexical/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-lexical/package.json
--------------------------------------------------------------------------------
/packages/zettel/zettel-lexical/src/index.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-lexical/src/index.ts
--------------------------------------------------------------------------------
/packages/zettel/zettel-lexical/src/plugin.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-lexical/src/plugin.ts
--------------------------------------------------------------------------------
/packages/zettel/zettel-lexical/tsconfig.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/packages/zettel/zettel-lexical/tsconfig.json
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/pnpm-lock.yaml
--------------------------------------------------------------------------------
/pnpm-workspace.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/pnpm-workspace.yaml
--------------------------------------------------------------------------------
/render.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/opral/monorepo/HEAD/render.yaml
--------------------------------------------------------------------------------