├── .bundlewatch.config.js ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── i18n_request.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── CI-build.yml │ ├── CI-e2e.yml │ ├── CI-typos.yml │ ├── bundle-size.yml │ ├── deploy.yml │ ├── docker-deploy.yml │ ├── i18n-update-notify.yml │ ├── i18n-update-pull.yml │ ├── i18n-update-push.yml │ ├── i18n-update-scheduled.yml │ ├── release-pr.yml │ └── release.yml ├── .gitignore ├── .jest └── setup.ts ├── .nvmrc ├── .prettierignore ├── .stylelintrc.json ├── .vscode ├── html.html-data.json └── settings.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── FUNDING.yml ├── LICENSE ├── README.md ├── SECURITY.md ├── docker-compose.yml ├── docs ├── .gitignore ├── README.md ├── docs │ ├── about.mdx │ ├── advanced │ │ ├── custom-settings.mdx │ │ ├── docker.mdx │ │ ├── index.mdx │ │ └── services.mdx │ ├── bookmarklet.mdx │ ├── configuration │ │ ├── configuration-object.mdx │ │ ├── index.mdx │ │ └── query-params.mdx │ ├── contact.mdx │ ├── contribution.mdx │ ├── contribution │ │ ├── adding-languages.mdx │ │ ├── i18n.mdx │ │ └── release.mdx │ ├── credits.mdx │ ├── examples │ │ └── display-modes │ │ │ ├── codeblock.mdx │ │ │ ├── editor.mdx │ │ │ ├── full.mdx │ │ │ ├── index.mdx │ │ │ └── result.mdx │ ├── features │ │ ├── ai.mdx │ │ ├── assets.mdx │ │ ├── backup-restore.mdx │ │ ├── broadcast.mdx │ │ ├── code-format.mdx │ │ ├── code-prefill.mdx │ │ ├── code-to-image.mdx │ │ ├── command-menu.mdx │ │ ├── compiled-code.mdx │ │ ├── console.mdx │ │ ├── css.mdx │ │ ├── data-urls.mdx │ │ ├── default-template-language.mdx │ │ ├── default-view.mdx │ │ ├── deploy.mdx │ │ ├── display-modes.mdx │ │ ├── editor-settings.mdx │ │ ├── embeds.mdx │ │ ├── emmet.mdx │ │ ├── export.mdx │ │ ├── external-resources.mdx │ │ ├── github-integration.mdx │ │ ├── i18n.mdx │ │ ├── import.mdx │ │ ├── index.mdx │ │ ├── integrations.mdx │ │ ├── intellisense.mdx │ │ ├── keyboard-shortcuts.mdx │ │ ├── lite.mdx │ │ ├── mobile.mdx │ │ ├── module-resolution.mdx │ │ ├── permanent-url.mdx │ │ ├── projects.mdx │ │ ├── read-only.mdx │ │ ├── recover.mdx │ │ ├── result.mdx │ │ ├── security.mdx │ │ ├── self-hosting.mdx │ │ ├── share.mdx │ │ ├── snippets.mdx │ │ ├── sync.mdx │ │ ├── templates.mdx │ │ ├── tests.mdx │ │ ├── themes.mdx │ │ ├── tools-pane.mdx │ │ ├── user-management.mdx │ │ ├── user-settings.mdx │ │ └── welcome.mdx │ ├── getting-started.mdx │ ├── gh-action.mdx │ ├── languages │ │ ├── _template.mdx │ │ ├── art-template.mdx │ │ ├── asciidoc.mdx │ │ ├── assemblyscript.mdx │ │ ├── astro.mdx │ │ ├── autoprefixer.mdx │ │ ├── babel.mdx │ │ ├── bbcode.mdx │ │ ├── blockly.mdx │ │ ├── civet.mdx │ │ ├── clio.mdx │ │ ├── clojurescript.mdx │ │ ├── coffeescript.mdx │ │ ├── commonlisp.mdx │ │ ├── cpp-wasm.mdx │ │ ├── cpp.mdx │ │ ├── csharp-wasm.mdx │ │ ├── css.mdx │ │ ├── cssmodules.mdx │ │ ├── cssnano.mdx │ │ ├── diagrams.mdx │ │ ├── dot.mdx │ │ ├── ejs.mdx │ │ ├── eta.mdx │ │ ├── fennel.mdx │ │ ├── flow.mdx │ │ ├── gleam.mdx │ │ ├── go-wasm.mdx │ │ ├── go.mdx │ │ ├── haml.mdx │ │ ├── handlebars.mdx │ │ ├── html.mdx │ │ ├── imba.mdx │ │ ├── img │ │ │ └── flow-chart.svg │ │ ├── index.mdx │ │ ├── java.mdx │ │ ├── javascript.mdx │ │ ├── jinja.mdx │ │ ├── jsx.mdx │ │ ├── julia.mdx │ │ ├── less.mdx │ │ ├── lightningcss.mdx │ │ ├── liquid.mdx │ │ ├── livescript.mdx │ │ ├── lua-wasm.mdx │ │ ├── lua.mdx │ │ ├── malina.mdx │ │ ├── markdown.mdx │ │ ├── mdx.mdx │ │ ├── mjml.mdx │ │ ├── mustache.mdx │ │ ├── nunjucks.mdx │ │ ├── ocaml.mdx │ │ ├── perl.mdx │ │ ├── php-wasm.mdx │ │ ├── php.mdx │ │ ├── postcss.mdx │ │ ├── postcssImportUrl.mdx │ │ ├── postcssPresetEnv.mdx │ │ ├── postgresql.mdx │ │ ├── prolog.mdx │ │ ├── pug.mdx │ │ ├── purgecss.mdx │ │ ├── python-wasm.mdx │ │ ├── python.mdx │ │ ├── r.mdx │ │ ├── react-native-tsx.mdx │ │ ├── react-native.mdx │ │ ├── react-tsx.mdx │ │ ├── react.mdx │ │ ├── reason.mdx │ │ ├── rescript.mdx │ │ ├── richtext.mdx │ │ ├── riot.mdx │ │ ├── ruby-wasm.mdx │ │ ├── ruby.mdx │ │ ├── sass.mdx │ │ ├── scheme.mdx │ │ ├── scss.mdx │ │ ├── solid.mdx │ │ ├── solid.tsx.mdx │ │ ├── sql.mdx │ │ ├── stencil.mdx │ │ ├── stylis.mdx │ │ ├── stylus.mdx │ │ ├── sucrase.mdx │ │ ├── svelte.mdx │ │ ├── tailwindcss.mdx │ │ ├── tcl.mdx │ │ ├── teal.mdx │ │ ├── tokencss.mdx │ │ ├── tsx.mdx │ │ ├── twig.mdx │ │ ├── typescript.mdx │ │ ├── unocss.mdx │ │ ├── vento.mdx │ │ ├── vue.mdx │ │ ├── vue2.mdx │ │ ├── wat.mdx │ │ └── windicss.mdx │ ├── license.mdx │ ├── markdown-to-livecodes.mdx │ ├── overview.mdx │ ├── sdk │ │ ├── headless.mdx │ │ ├── index.mdx │ │ ├── js-ts.mdx │ │ ├── react.mdx │ │ ├── solid.mdx │ │ ├── svelte.mdx │ │ └── vue.mdx │ ├── sponsor.mdx │ ├── tutorials │ │ ├── building-your-first-app.mdx │ │ ├── getting-started-guide.mdx │ │ └── index.mdx │ └── why.mdx ├── docusaurus.config.ts ├── package-lock.json ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ ├── ContactForm.module.css │ │ ├── ContactForm.tsx │ │ ├── HomepageCarousel.module.css │ │ ├── HomepageCarousel.tsx │ │ ├── HomepageFeatures.module.css │ │ ├── HomepageFeatures.tsx │ │ ├── LanguageSliders.module.css │ │ ├── LanguageSliders.tsx │ │ ├── LiveCodes.module.css │ │ ├── LiveCodes.tsx │ │ ├── MailLink.tsx │ │ ├── OpenCode.tsx │ │ ├── RunInLiveCodes.tsx │ │ ├── ShowCode.tsx │ │ ├── TemplateList.module.css │ │ ├── TemplateList.tsx │ │ ├── ThemeDemo.module.css │ │ ├── ThemeDemo.tsx │ │ └── Versions.tsx │ ├── css │ │ └── custom.css │ ├── custom-content.ts │ ├── pages │ │ ├── index.module.css │ │ └── index.tsx │ ├── plugins │ │ └── generate-llms-txt.ts │ ├── sponsors-list.ts │ ├── theme │ │ ├── DocItem │ │ │ └── Layout │ │ │ │ ├── index.tsx │ │ │ │ └── styles.module.css │ │ ├── Heading │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ │ ├── Root.tsx │ │ └── TOCItems │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ └── utils.ts ├── static │ ├── .nojekyll │ ├── img │ │ ├── add-frame.svg │ │ ├── arrow.svg │ │ ├── clients.svg │ │ ├── code.svg │ │ ├── credits │ │ │ ├── browserstack.svg │ │ │ ├── bundlejs.jpg │ │ │ ├── bundlejs.svg │ │ │ ├── bundlewatch.svg │ │ │ ├── cloudflare-pages.svg │ │ │ ├── codacy.svg │ │ │ ├── codeium.svg │ │ │ ├── digital-ocean.svg │ │ │ ├── dpaste.png │ │ │ ├── esm.sh.png │ │ │ ├── github.png │ │ │ ├── jsdelivr.svg │ │ │ ├── jspm.png │ │ │ ├── kapa-ai.jpg │ │ │ ├── lokalise.png │ │ │ ├── netlify.svg │ │ │ ├── skypack.svg │ │ │ ├── sonarcloud.svg │ │ │ ├── unpkg.png │ │ │ └── windsurf.svg │ │ ├── data-privacy.svg │ │ ├── docs.svg │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── feather.svg │ │ ├── integrations.svg │ │ ├── light-bulb.svg │ │ ├── livecodes-logo.svg │ │ ├── logo.svg │ │ ├── magic-wand.svg │ │ ├── oss.svg │ │ ├── pen.svg │ │ ├── responsive.svg │ │ ├── screenshots │ │ │ ├── SCSS-Autoprefixer.jpg │ │ │ ├── add-snippet.png │ │ │ ├── ai-1.jpg │ │ │ ├── assets-1.jpg │ │ │ ├── assets-2.jpg │ │ │ ├── assets.jpg │ │ │ ├── assets.png │ │ │ ├── autocomplete.jpg │ │ │ ├── autocomplete.png │ │ │ ├── backup-restore-1.jpg │ │ │ ├── backup-restore-2.jpg │ │ │ ├── backup-restore.png │ │ │ ├── backup.jpg │ │ │ ├── broadcast-1.jpg │ │ │ ├── broadcast-1a.jpg │ │ │ ├── broadcast-2.jpg │ │ │ ├── broadcast-2a.jpg │ │ │ ├── broadcast-3.jpg │ │ │ ├── broadcast-4.jpg │ │ │ ├── broadcast-5.jpg │ │ │ ├── broadcast.jpg │ │ │ ├── broadcasting-code.jpg │ │ │ ├── broadcasting-result.jpg │ │ │ ├── broadcasting.jpg │ │ │ ├── broadcasting2.jpg │ │ │ ├── code-to-image-1.jpg │ │ │ ├── code-to-image-2.jpg │ │ │ ├── code-to-image-3.jpg │ │ │ ├── code-to-image-4.jpg │ │ │ ├── code-to-image-5.jpg │ │ │ ├── code-to-image-6.jpg │ │ │ ├── command-menu-1.jpg │ │ │ ├── command-menu-2.jpg │ │ │ ├── command-menu-3.jpg │ │ │ ├── command-menu-4.jpg │ │ │ ├── command-menu-5.jpg │ │ │ ├── command-menu-6.jpg │ │ │ ├── compiled-code-1.jpg │ │ │ ├── compiled-code.jpg │ │ │ ├── compiled-code.png │ │ │ ├── console-1.jpg │ │ │ ├── console.jpg │ │ │ ├── console.png │ │ │ ├── css-processors.jpg │ │ │ ├── css-processors.png │ │ │ ├── dark-theme.jpg │ │ │ ├── deploy-1.jpg │ │ │ ├── deploy.jpg │ │ │ ├── deploy.png │ │ │ ├── editor-settings-1.jpg │ │ │ ├── editor-settings-1.png │ │ │ ├── editor-settings-2.jpg │ │ │ ├── editor-settings-2.png │ │ │ ├── editor-settings-3.jpg │ │ │ ├── editor-settings-3.png │ │ │ ├── editor-settings-4.png │ │ │ ├── editor-settings.jpg │ │ │ ├── editor-settings.png │ │ │ ├── editor-settings2.jpg │ │ │ ├── editor-settings2.png │ │ │ ├── embed-1.jpg │ │ │ ├── embed-2.jpg │ │ │ ├── embed-3.jpg │ │ │ ├── embed.png │ │ │ ├── embed1.png │ │ │ ├── embed2.png │ │ │ ├── embed3.png │ │ │ ├── export-1.jpg │ │ │ ├── export-2.jpg │ │ │ ├── export.jpg │ │ │ ├── export.png │ │ │ ├── external-resources-search.jpg │ │ │ ├── external-resources.jpg │ │ │ ├── features-1.jpg │ │ │ ├── features-2.jpg │ │ │ ├── features-3.jpg │ │ │ ├── features.jpg │ │ │ ├── focus-mode.png │ │ │ ├── format-1.jpg │ │ │ ├── format.jpg │ │ │ ├── full-mode.png │ │ │ ├── i18n-1.jpg │ │ │ ├── i18n-2.jpg │ │ │ ├── i18n.png │ │ │ ├── import-1.jpg │ │ │ ├── import-2.jpg │ │ │ ├── import.jpg │ │ │ ├── intellisense-1.jpg │ │ │ ├── intellisense-2.jpg │ │ │ ├── intellisense-3.jpg │ │ │ ├── intellisense.png │ │ │ ├── intellisense1.jpg │ │ │ ├── intellisense2.jpg │ │ │ ├── keyboard-shortcuts.jpg │ │ │ ├── languages-1.jpg │ │ │ ├── languages-2.jpg │ │ │ ├── languages-3.jpg │ │ │ ├── languages.jpg │ │ │ ├── languages.png │ │ │ ├── light-theme-.jpg │ │ │ ├── light-theme.jpg │ │ │ ├── light-theme.png │ │ │ ├── livecodes-languages.jpg │ │ │ ├── livecodes-overview.jpg │ │ │ ├── menu.jpg │ │ │ ├── mode-focus.jpg │ │ │ ├── mode-full.jpg │ │ │ ├── new-window.jpg │ │ │ ├── preview-in-livecodes-gh-action.png │ │ │ ├── project-info.jpg │ │ │ ├── project-info.png │ │ │ ├── react-template.png │ │ │ ├── resources-search.jpg │ │ │ ├── resources.jpg │ │ │ ├── responsive.jpg │ │ │ ├── restore-project.jpg │ │ │ ├── restore.jpg │ │ │ ├── result-new-window.jpg │ │ │ ├── result-zoom.jpg │ │ │ ├── saved-projects-1.jpg │ │ │ ├── saved-projects.jpg │ │ │ ├── saved-projects.png │ │ │ ├── settings-export.jpg │ │ │ ├── share-1.jpg │ │ │ ├── share-2.jpg │ │ │ ├── share-3.jpg │ │ │ ├── share-qrcode.jpg │ │ │ ├── share.jpg │ │ │ ├── share.png │ │ │ ├── share2.jpg │ │ │ ├── slider │ │ │ │ ├── assets.jpg │ │ │ │ ├── backup-restore.png │ │ │ │ ├── broadcast.png │ │ │ │ ├── compiled-code.jpg │ │ │ │ ├── console.jpg │ │ │ │ ├── css-processors.jpg │ │ │ │ ├── deploy.jpg │ │ │ │ ├── editor-settings.png │ │ │ │ ├── editor-settings2.png │ │ │ │ ├── embed.jpg │ │ │ │ ├── export.jpg │ │ │ │ ├── external-resources.png │ │ │ │ ├── import.png │ │ │ │ ├── intellisense.jpg │ │ │ │ ├── languages.jpg │ │ │ │ ├── light-theme.jpg │ │ │ │ ├── project-info.png │ │ │ │ ├── responsive.jpg │ │ │ │ ├── saved-projects.jpg │ │ │ │ ├── share.jpg │ │ │ │ ├── snippets.jpg │ │ │ │ ├── sync.png │ │ │ │ ├── templates1.jpg │ │ │ │ ├── templates2.jpg │ │ │ │ ├── tests.jpg │ │ │ │ └── welcome.jpg │ │ │ ├── snippets-1.jpg │ │ │ ├── snippets-add.jpg │ │ │ ├── snippets-list.jpg │ │ │ ├── snippets.jpg │ │ │ ├── snippets.png │ │ │ ├── spacing.jpg │ │ │ ├── spacings.jpg │ │ │ ├── starter-templates-2.jpg │ │ │ ├── starter-templates.jpg │ │ │ ├── styles.jpg │ │ │ ├── sync-menu.jpg │ │ │ ├── sync.jpg │ │ │ ├── sync.png │ │ │ ├── sync2.png │ │ │ ├── tailwindcss.jpg │ │ │ ├── templates-1.jpg │ │ │ ├── templates-2.jpg │ │ │ ├── templates1.png │ │ │ ├── templates2.png │ │ │ ├── test-editor.jpg │ │ │ ├── test-editor.png │ │ │ ├── tests.jpg │ │ │ ├── tests.png │ │ │ ├── themes-1.jpg │ │ │ ├── themes-2.jpg │ │ │ ├── themes-3.jpg │ │ │ ├── themes-4.jpg │ │ │ ├── themes-5.jpg │ │ │ ├── twoslash-jsx.jpg │ │ │ ├── twoslash-jsx.png │ │ │ ├── twoslash.jpg │ │ │ ├── twoslash.png │ │ │ ├── welcome-1.jpg │ │ │ ├── welcome.png │ │ │ └── zoom.jpg │ │ └── star.svg │ └── vid │ │ ├── LiveCodes-AI-py.mp4 │ │ ├── LiveCodes-AI-py.webm │ │ ├── LiveCodes-AI.mp4 │ │ └── LiveCodes-AI.webm └── tsconfig.json ├── e2e ├── .eslintrc ├── global-setup.ts ├── helpers.ts ├── specs │ ├── compilers.spec.ts │ ├── config.spec.ts │ ├── css-modules.spec.ts │ ├── custom-settings.spec.ts │ ├── defaults.spec.ts │ ├── i18n.spec.ts │ ├── import-map.spec.ts │ ├── import.spec.ts │ ├── jsx.spec.ts │ ├── screens.spec.ts │ ├── sdk-options.spec.ts │ ├── sfc-processors.spec.ts │ └── starter.spec.ts └── test-fixtures.ts ├── eslint.config.mjs ├── functions ├── index.ts ├── oembed.ts ├── utils.ts └── vendors │ ├── compression.js │ └── templates.js ├── images ├── edit-in-livecodes-button │ ├── edit-in-livecodes-button-dark.png │ ├── edit-in-livecodes-button-dark.svg │ ├── edit-in-livecodes-button.png │ ├── edit-in-livecodes-button.svg │ ├── edit-in-livecodes-dark.png │ └── edit-in-livecodes.png ├── livecodes-export-import.svg └── logo │ ├── README.md │ ├── favicon_package_v0.16.zip │ ├── livecodes-logo-border.svg │ ├── livecodes-logo-icon-border.svg │ ├── livecodes-logo-icon.svg │ ├── livecodes-logo.png │ ├── livecodes-logo.svg │ ├── livecodes-text-logo-flat.svg │ ├── livecodes-text-logo.jpg │ ├── livecodes-text-logo.png │ ├── livecodes-text-logo.svg │ ├── more │ ├── 404-src.svg │ ├── 404.png │ ├── 404.svg │ ├── happy-livecodes-2-src.svg │ ├── happy-livecodes-2.png │ ├── happy-livecodes-2.svg │ ├── happy-livecodes.png │ ├── happy-livecodes.svg │ ├── winking-livecodes.png │ └── winking-livecodes.svg │ └── src │ ├── livecodes-logo-icon.svg │ ├── livecodes-logo.svg │ ├── livecodes-text-logo-flat.svg │ └── livecodes-text-logo.svg ├── package.json ├── patches ├── codejar+4.1.1.patch └── git-semver-tags+4.1.1.patch ├── playwright.config.ts ├── scripts ├── build.js ├── bundle-types.js ├── create-permanent-url.js ├── hash.js ├── i18n-exclude.js ├── i18n-export.js ├── i18n-import.mjs ├── i18n-lokalise-json.mjs ├── i18n-upload.mjs ├── i18n.js ├── inject-css.js ├── release-notes.js ├── start-release.mjs ├── styles.js ├── test-filenames.js ├── test-i18n-exclude.js ├── test-i18n-export.js ├── utils.js └── vscode-intellisense.js ├── server ├── README.md ├── caddy │ ├── Caddyfile │ └── entrypoint.sh ├── package-lock.json ├── package.json └── src │ ├── app.ts │ ├── broadcast │ ├── code.html │ ├── index.html │ ├── index.ts │ └── result.html │ ├── cors.ts │ ├── sandbox.ts │ ├── share.ts │ └── utils.ts ├── src ├── 404.html ├── _headers ├── favicon.ico ├── index.html ├── livecodes │ ├── UI │ │ ├── accordion.ts │ │ ├── assets.ts │ │ ├── backup.ts │ │ ├── broadcast.ts │ │ ├── code-to-image.ts │ │ ├── command-menu-actions.ts │ │ ├── create-language-menus.ts │ │ ├── deploy.ts │ │ ├── editor-settings.ts │ │ ├── embed-ui.ts │ │ ├── icons.ts │ │ ├── import.ts │ │ ├── index.ts │ │ ├── info.ts │ │ ├── loading.ts │ │ ├── login.ts │ │ ├── modal.ts │ │ ├── open.ts │ │ ├── qrcode.ts │ │ ├── resources.ts │ │ ├── selectors.ts │ │ ├── share.ts │ │ ├── snippets.ts │ │ ├── split-panes.ts │ │ ├── sync-ui.ts │ │ ├── templates.ts │ │ └── theme-colors.ts │ ├── _modules.ts │ ├── app.ts │ ├── assets │ │ ├── browserconfig.xml │ │ ├── code-to-img │ │ │ ├── preset_1.jpg │ │ │ ├── preset_10.jpg │ │ │ ├── preset_11.jpg │ │ │ ├── preset_12.jpg │ │ │ ├── preset_13.jpg │ │ │ ├── preset_14.jpg │ │ │ ├── preset_15.jpg │ │ │ ├── preset_16.jpg │ │ │ ├── preset_17.jpg │ │ │ ├── preset_2.jpg │ │ │ ├── preset_3.jpg │ │ │ ├── preset_4.jpg │ │ │ ├── preset_5.jpg │ │ │ ├── preset_6.jpg │ │ │ ├── preset_7.jpg │ │ │ ├── preset_8.jpg │ │ │ └── preset_9.jpg │ │ ├── icons │ │ │ ├── cancel.svg │ │ │ ├── codeium.svg │ │ │ ├── copy.svg │ │ │ ├── edit.svg │ │ │ ├── email.svg │ │ │ ├── import.svg │ │ │ ├── info.svg │ │ │ ├── new.svg │ │ │ ├── open.svg │ │ │ ├── qr-code.svg │ │ │ ├── recover.svg │ │ │ ├── save.svg │ │ │ ├── share.svg │ │ │ └── template.svg │ │ ├── images │ │ │ ├── 404.c5e490f0fd3e35509fd80c37ce93c3d4.png │ │ │ ├── 404.png │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── archive.svg │ │ │ ├── audio.svg │ │ │ ├── broadcast.svg │ │ │ ├── camera.svg │ │ │ ├── codeium.svg │ │ │ ├── collapse.svg │ │ │ ├── copy-as-url.svg │ │ │ ├── copy.svg │ │ │ ├── css.svg │ │ │ ├── csv.svg │ │ │ ├── curly-braces.svg │ │ │ ├── edit-in-livecodes-button-dark.svg │ │ │ ├── edit-in-livecodes-button.svg │ │ │ ├── edit-in-livecodes-dark.png │ │ │ ├── edit-in-livecodes.png │ │ │ ├── expand.svg │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── file.svg │ │ │ ├── focus.svg │ │ │ ├── font.svg │ │ │ ├── format.svg │ │ │ ├── gear.png │ │ │ ├── gear.svg │ │ │ ├── html.svg │ │ │ ├── icon.svg │ │ │ ├── image.svg │ │ │ ├── info.svg │ │ │ ├── javascript.svg │ │ │ ├── json.svg │ │ │ ├── livecodes-logo-small.png │ │ │ ├── livecodes-logo.png │ │ │ ├── livecodes-logo.svg │ │ │ ├── livecodes-text-logo-nowrap-light.svg │ │ │ ├── livecodes-text-logo-nowrap.svg │ │ │ ├── livecodes-text-logo.png │ │ │ ├── livecodes-text-logo.svg │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ ├── mstile-70x70.png │ │ │ ├── safari-pinned-tab.svg │ │ │ ├── script-sheet.svg │ │ │ ├── script.svg │ │ │ ├── stylesheet.svg │ │ │ ├── text.svg │ │ │ ├── tick.svg │ │ │ ├── video.svg │ │ │ ├── windsurf.svg │ │ │ └── xml.svg │ │ ├── noop.js │ │ ├── site.webmanifest │ │ └── templates │ │ │ ├── angular.svg │ │ │ ├── assemblyscript.svg │ │ │ ├── astro.svg │ │ │ ├── backbone.svg │ │ │ ├── blank.svg │ │ │ ├── blockly.svg │ │ │ ├── bootstrap.svg │ │ │ ├── civet.png │ │ │ ├── clio.png │ │ │ ├── cljs.svg │ │ │ ├── coffeescript.svg │ │ │ ├── commonlisp.svg │ │ │ ├── cpp.svg │ │ │ ├── csharp.svg │ │ │ ├── d3.svg │ │ │ ├── daisy-profile-picture.webp │ │ │ ├── daisyui-5.webp │ │ │ ├── daisyui.svg │ │ │ ├── diagrams-starter.html │ │ │ ├── diagrams.svg │ │ │ ├── fennel.svg │ │ │ ├── gleam.svg │ │ │ ├── go.svg │ │ │ ├── imba.svg │ │ │ ├── java.svg │ │ │ ├── javascript.svg │ │ │ ├── jest.svg │ │ │ ├── jquery.svg │ │ │ ├── julia.svg │ │ │ ├── knockout.svg │ │ │ ├── lit.svg │ │ │ ├── livescript.svg │ │ │ ├── lua.svg │ │ │ ├── malina.svg │ │ │ ├── markdown.svg │ │ │ ├── mdx.svg │ │ │ ├── ocaml.svg │ │ │ ├── perl.svg │ │ │ ├── phaser.png │ │ │ ├── php.svg │ │ │ ├── polymer.svg │ │ │ ├── postgresql.svg │ │ │ ├── preact.svg │ │ │ ├── python.svg │ │ │ ├── r.svg │ │ │ ├── react.svg │ │ │ ├── reason.svg │ │ │ ├── rescript.png │ │ │ ├── riot.svg │ │ │ ├── ruby.svg │ │ │ ├── sass.svg │ │ │ ├── scheme.svg │ │ │ ├── shadcn-ui.svg │ │ │ ├── solid.svg │ │ │ ├── sqlite.svg │ │ │ ├── stencil.png │ │ │ ├── svelte.svg │ │ │ ├── tailwind-play-dark.svg │ │ │ ├── tailwind-play.svg │ │ │ ├── tailwindcss.svg │ │ │ ├── tailwindplay.svg │ │ │ ├── tau-prolog.svg │ │ │ ├── tcl.svg │ │ │ ├── teal.png │ │ │ ├── typescript.svg │ │ │ ├── vue.svg │ │ │ └── webassembly.svg │ ├── cache │ │ ├── __tests__ │ │ │ └── cache.spec.ts │ │ ├── cache.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── compiler │ │ ├── __tests__ │ │ │ └── import-map.spec.ts │ │ ├── compile-blocks.ts │ │ ├── compile-in-compiler.ts │ │ ├── compile.page.ts │ │ ├── compile.worker.ts │ │ ├── compiler-sandbox.ts │ │ ├── compiler-utils.ts │ │ ├── create-compiler.ts │ │ ├── get-all-compilers.ts │ │ ├── get-compiler.ts │ │ ├── import-map.ts │ │ ├── index.ts │ │ ├── models.ts │ │ └── utils.ts │ ├── config │ │ ├── __tests__ │ │ │ ├── build-config.spec.ts │ │ │ ├── is-earlier.spec.ts │ │ │ ├── upgrade-config.spec.ts │ │ │ └── validate-config.spec.ts │ │ ├── build-config.ts │ │ ├── config.ts │ │ ├── default-config.ts │ │ ├── index.ts │ │ ├── upgrade-config.ts │ │ └── validate-config.ts │ ├── core.ts │ ├── deploy │ │ ├── deploy.ts │ │ └── index.ts │ ├── editor │ │ ├── blockly │ │ │ ├── blockly-editor.ts │ │ │ ├── blockly.html │ │ │ ├── blockly.ts │ │ │ └── index.ts │ │ ├── codejar │ │ │ ├── codejar.ts │ │ │ └── prism-themes.ts │ │ ├── codemirror │ │ │ ├── codemirror-themes.ts │ │ │ ├── codemirror.ts │ │ │ └── editor-languages.ts │ │ ├── create-editor.ts │ │ ├── custom-editor-commands.ts │ │ ├── custom-editor-utils.ts │ │ ├── custom-editors.ts │ │ ├── fake-editor.ts │ │ ├── fonts.ts │ │ ├── index.ts │ │ ├── monaco │ │ │ ├── languages │ │ │ │ ├── monaco-lang-astro.ts │ │ │ │ ├── monaco-lang-clio.ts │ │ │ │ ├── monaco-lang-imba.ts │ │ │ │ ├── monaco-lang-sql.ts │ │ │ │ └── monaco-lang-wat.ts │ │ │ ├── monaco-themes.ts │ │ │ ├── monaco.ts │ │ │ ├── register-twoslash.ts │ │ │ └── twoslashSupport.ts │ │ ├── quill │ │ │ ├── index.ts │ │ │ ├── quill-editor.ts │ │ │ ├── quill.html │ │ │ └── quill.ts │ │ ├── themes.ts │ │ └── ts-compiler-options.ts │ ├── embed.ts │ ├── events │ │ ├── custom-events.ts │ │ ├── events.ts │ │ ├── index.ts │ │ └── pub.ts │ ├── export │ │ ├── export-codepen.ts │ │ ├── export-github-gist.ts │ │ ├── export-html.ts │ │ ├── export-jsfiddle.ts │ │ ├── export-json.ts │ │ ├── export-src.ts │ │ ├── export.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── formatter │ │ ├── format.worker.ts │ │ ├── formatter.ts │ │ ├── get-formatter.ts │ │ ├── index.ts │ │ └── models.ts │ ├── headless.ts │ ├── html │ │ ├── about.html │ │ ├── add-asset.html │ │ ├── add-snippet.html │ │ ├── app-base.html │ │ ├── app-menu-help.html │ │ ├── app-menu-project.html │ │ ├── app-menu-settings.html │ │ ├── app.html │ │ ├── assets.html │ │ ├── backup.html │ │ ├── broadcast.html │ │ ├── code-to-image.html │ │ ├── custom-settings.html │ │ ├── deploy.html │ │ ├── editor-settings.html │ │ ├── embed.html │ │ ├── external-resources.html │ │ ├── import.html │ │ ├── index.ts │ │ ├── keyboard-shortcuts.html │ │ ├── language-info.html │ │ ├── login.html │ │ ├── open.html │ │ ├── project-info.html │ │ ├── recover-prompt.html │ │ ├── result-popup.html │ │ ├── sandbox │ │ │ ├── index.ts │ │ │ └── v9 │ │ │ │ ├── compiler.html │ │ │ │ └── index.html │ │ ├── save-prompt.html │ │ ├── share.html │ │ ├── snippets.html │ │ ├── sync.html │ │ ├── templates.html │ │ ├── test-editor.html │ │ └── welcome.html │ ├── i18n │ │ ├── app-languages.ts │ │ ├── i18n.ts │ │ ├── i18next.d.ts │ │ ├── index.ts │ │ ├── locale-paths.ts │ │ ├── locales │ │ │ ├── ar │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── bn │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── de │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── en │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── es │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── fa │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── fr │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── hi │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── id │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── it │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── ja │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── models.ts │ │ │ ├── nl │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── pt │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── ru │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── tr │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ ├── ur │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ │ └── zh-CN │ │ │ │ ├── language-info.lokalise.json │ │ │ │ ├── language-info.ts │ │ │ │ ├── translation.lokalise.json │ │ │ │ └── translation.ts │ │ ├── models.ts │ │ └── utils.ts │ ├── import │ │ ├── __tests__ │ │ │ ├── hosts.spec.ts │ │ │ ├── populate-config.spec.ts │ │ │ └── url.spec.ts │ │ ├── check-src.ts │ │ ├── code.ts │ │ ├── codepen.ts │ │ ├── dom.ts │ │ ├── files.ts │ │ ├── github-dir.ts │ │ ├── github-gist.ts │ │ ├── github.ts │ │ ├── gitlab-dir.ts │ │ ├── gitlab-snippet.ts │ │ ├── gitlab.ts │ │ ├── image.ts │ │ ├── import-src.ts │ │ ├── import.ts │ │ ├── index.ts │ │ ├── jsbin.ts │ │ ├── project-id.ts │ │ ├── typescript-playground.ts │ │ ├── url.ts │ │ ├── utils.ts │ │ ├── vue-playground.ts │ │ └── zip.ts │ ├── index.ts │ ├── languages │ │ ├── __tests__ │ │ │ └── languages.spec.ts │ │ ├── art-template │ │ │ ├── index.ts │ │ │ ├── lang-art-template-compiler.ts │ │ │ └── lang-art-template.ts │ │ ├── asciidoc │ │ │ ├── index.ts │ │ │ └── lang-asciidoc.ts │ │ ├── assemblyscript │ │ │ ├── index.ts │ │ │ ├── lang-assemblyscript-compiler.ts │ │ │ ├── lang-assemblyscript-script.ts │ │ │ └── lang-assemblyscript.ts │ │ ├── astro │ │ │ ├── index.ts │ │ │ ├── lang-astro-compiler.ts │ │ │ └── lang-astro.ts │ │ ├── babel │ │ │ ├── index.ts │ │ │ └── lang-babel.ts │ │ ├── bbcode │ │ │ ├── index.ts │ │ │ └── lang-bbcode.ts │ │ ├── blockly │ │ │ ├── index.ts │ │ │ └── lang-blockly.ts │ │ ├── civet │ │ │ ├── index.ts │ │ │ └── lang-civet.ts │ │ ├── clio │ │ │ ├── index.ts │ │ │ ├── lang-clio-compiler.ts │ │ │ └── lang-clio.ts │ │ ├── clojurescript │ │ │ ├── index.ts │ │ │ └── lang-clojurescript.ts │ │ ├── coffeescript │ │ │ ├── index.ts │ │ │ └── lang-coffeescript.ts │ │ ├── commonlisp │ │ │ ├── index.ts │ │ │ ├── lang-commonlisp-script.ts │ │ │ └── lang-commonlisp.ts │ │ ├── cpp-wasm │ │ │ ├── index.ts │ │ │ ├── lang-cpp-wasm-script.ts │ │ │ └── lang-cpp-wasm.ts │ │ ├── cpp │ │ │ ├── index.ts │ │ │ ├── lang-cpp-script.ts │ │ │ └── lang-cpp.ts │ │ ├── csharp-wasm │ │ │ ├── index.ts │ │ │ ├── lang-csharp-wasm-script.ts │ │ │ └── lang-csharp-wasm.ts │ │ ├── css-presets.ts │ │ ├── css │ │ │ ├── index.ts │ │ │ └── lang-css.ts │ │ ├── diagrams │ │ │ ├── index.ts │ │ │ ├── lang-diagrams-compiler-esm.ts │ │ │ └── lang-diagrams.ts │ │ ├── dot │ │ │ ├── index.ts │ │ │ ├── lang-dot-compiler.ts │ │ │ └── lang-dot.ts │ │ ├── ejs │ │ │ ├── index.ts │ │ │ ├── lang-ejs-compiler.ts │ │ │ └── lang-ejs.ts │ │ ├── eta │ │ │ ├── index.ts │ │ │ ├── lang-eta-compiler.ts │ │ │ └── lang-eta.ts │ │ ├── fennel │ │ │ ├── index.ts │ │ │ ├── lang-fennel-compiler.ts │ │ │ └── lang-fennel.ts │ │ ├── flow │ │ │ ├── index.ts │ │ │ └── lang-flow.ts │ │ ├── gleam │ │ │ ├── gleam-modules.ts │ │ │ ├── index.ts │ │ │ ├── lang-gleam-compiler.ts │ │ │ └── lang-gleam.ts │ │ ├── go-wasm │ │ │ ├── index.ts │ │ │ ├── lang-go-wasm-script.ts │ │ │ └── lang-go-wasm.ts │ │ ├── go │ │ │ ├── index.ts │ │ │ └── lang-go.ts │ │ ├── haml │ │ │ ├── index.ts │ │ │ ├── lang-haml-compiler.ts │ │ │ └── lang-haml.ts │ │ ├── handlebars │ │ │ ├── index.ts │ │ │ ├── lang-handlebars-compiler.ts │ │ │ └── lang-handlebars.ts │ │ ├── html │ │ │ ├── index.ts │ │ │ └── lang-html.ts │ │ ├── imba │ │ │ ├── index.ts │ │ │ ├── lang-imba-compiler.ts │ │ │ └── lang-imba.ts │ │ ├── index.ts │ │ ├── java │ │ │ ├── index.ts │ │ │ ├── lang-java-script.ts │ │ │ └── lang-java.ts │ │ ├── javascript │ │ │ ├── index.ts │ │ │ └── lang-javascript.ts │ │ ├── jinja │ │ │ ├── index.ts │ │ │ ├── lang-jinja-compiler.ts │ │ │ └── lang-jinja.ts │ │ ├── jsx │ │ │ ├── index.ts │ │ │ ├── lang-jsx.ts │ │ │ ├── lang-tsx.ts │ │ │ └── react-runtime.ts │ │ ├── julia │ │ │ ├── index.ts │ │ │ ├── lang-julia-script.ts │ │ │ └── lang-julia.ts │ │ ├── language-info.ts │ │ ├── languages.ts │ │ ├── less │ │ │ ├── index.ts │ │ │ └── lang-less.ts │ │ ├── lightningcss │ │ │ ├── index.ts │ │ │ ├── processor-lightningcss-compiler.ts │ │ │ └── processor-lightningcss.ts │ │ ├── liquid │ │ │ ├── index.ts │ │ │ ├── lang-liquid-compiler.ts │ │ │ └── lang-liquid.ts │ │ ├── livescript │ │ │ ├── index.ts │ │ │ └── lang-livescript.ts │ │ ├── lua-wasm │ │ │ ├── index.ts │ │ │ ├── lang-lua-wasm-script.ts │ │ │ └── lang-lua-wasm.ts │ │ ├── lua │ │ │ ├── index.ts │ │ │ └── lang-lua.ts │ │ ├── malina │ │ │ ├── index.ts │ │ │ ├── lang-malina-compiler.ts │ │ │ └── lang-malina.ts │ │ ├── markdown │ │ │ ├── index.ts │ │ │ └── lang-markdown.ts │ │ ├── mdx │ │ │ ├── index.ts │ │ │ └── lang-mdx.ts │ │ ├── mjml │ │ │ ├── index.ts │ │ │ └── lang-mjml.ts │ │ ├── mustache │ │ │ ├── index.ts │ │ │ ├── lang-mustache-compiler.ts │ │ │ └── lang-mustache.ts │ │ ├── nunjucks │ │ │ ├── index.ts │ │ │ ├── lang-nunjucks-compiler.ts │ │ │ └── lang-nunjucks.ts │ │ ├── ocaml │ │ │ ├── index.ts │ │ │ └── lang-ocaml.ts │ │ ├── perl │ │ │ ├── index.ts │ │ │ ├── lang-perl-script.ts │ │ │ └── lang-perl.ts │ │ ├── php-wasm │ │ │ ├── index.ts │ │ │ ├── lang-php-wasm-script.ts │ │ │ └── lang-php-wasm.ts │ │ ├── php │ │ │ ├── index.ts │ │ │ └── lang-php.ts │ │ ├── postcss │ │ │ ├── index.ts │ │ │ ├── postcss-plugins.ts │ │ │ ├── processor-postcss-compiler.ts │ │ │ └── processor-postcss.ts │ │ ├── postgresql │ │ │ ├── index.ts │ │ │ ├── lang-postgresql-compiler-esm.ts │ │ │ └── lang-postgresql.ts │ │ ├── prettier.ts │ │ ├── processors.ts │ │ ├── prolog │ │ │ ├── index.ts │ │ │ ├── lang-prolog-script.ts │ │ │ └── lang-prolog.ts │ │ ├── pug │ │ │ ├── index.ts │ │ │ ├── lang-pug-compiler.ts │ │ │ └── lang-pug.ts │ │ ├── python-wasm │ │ │ ├── index.ts │ │ │ ├── lang-python-wasm-script.ts │ │ │ └── lang-python-wasm.ts │ │ ├── python │ │ │ ├── index.ts │ │ │ └── lang-python.ts │ │ ├── r │ │ │ ├── index.ts │ │ │ ├── lang-r-script-esm.ts │ │ │ └── lang-r.ts │ │ ├── react-native │ │ │ ├── index.ts │ │ │ ├── lang-react-native-tsx.ts │ │ │ ├── lang-react-native.ts │ │ │ └── react-native-runtime.ts │ │ ├── react │ │ │ ├── index.ts │ │ │ ├── lang-react-tsx.ts │ │ │ └── lang-react.ts │ │ ├── reason │ │ │ ├── index.ts │ │ │ └── lang-reason.ts │ │ ├── rescript │ │ │ ├── index.ts │ │ │ ├── lang-rescript-compiler-esm.ts │ │ │ ├── lang-rescript-formatter.ts │ │ │ └── lang-rescript.ts │ │ ├── richtext │ │ │ ├── index.ts │ │ │ └── lang-richtext.ts │ │ ├── riot │ │ │ ├── index.ts │ │ │ ├── lang-riot-compiler.ts │ │ │ └── lang-riot.ts │ │ ├── ruby-wasm │ │ │ ├── index.ts │ │ │ ├── lang-ruby-wasm-script.ts │ │ │ └── lang-ruby-wasm.ts │ │ ├── ruby │ │ │ ├── index.ts │ │ │ └── lang-ruby.ts │ │ ├── scheme │ │ │ ├── index.ts │ │ │ └── lang-scheme.ts │ │ ├── scss │ │ │ ├── index.ts │ │ │ ├── lang-sass.ts │ │ │ ├── lang-scss-compiler.ts │ │ │ └── lang-scss.ts │ │ ├── solid │ │ │ ├── index.ts │ │ │ ├── lang-solid-compiler.ts │ │ │ ├── lang-solid-tsx.ts │ │ │ ├── lang-solid.ts │ │ │ └── solid-runtime.ts │ │ ├── sql │ │ │ ├── index.ts │ │ │ ├── lang-sql-compiler.ts │ │ │ ├── lang-sql-script.ts │ │ │ └── lang-sql.ts │ │ ├── stencil │ │ │ ├── index.ts │ │ │ └── lang-stencil.ts │ │ ├── stylis │ │ │ ├── index.ts │ │ │ └── lang-stylis.ts │ │ ├── stylus │ │ │ ├── index.ts │ │ │ └── lang-stylus.ts │ │ ├── sucrase │ │ │ ├── index.ts │ │ │ └── lang-sucrase.ts │ │ ├── svelte │ │ │ ├── index.ts │ │ │ ├── lang-svelte-compiler.ts │ │ │ └── lang-svelte.ts │ │ ├── tailwindcss │ │ │ ├── index.ts │ │ │ ├── processor-tailwindcss-compiler.ts │ │ │ ├── processor-tailwindcss.ts │ │ │ └── utils.ts │ │ ├── tcl │ │ │ ├── index.ts │ │ │ ├── lang-tcl-script.ts │ │ │ └── lang-tcl.ts │ │ ├── teal │ │ │ ├── index.ts │ │ │ ├── lang-teal-compiler.ts │ │ │ └── lang-teal.ts │ │ ├── twig │ │ │ ├── index.ts │ │ │ ├── lang-twig-compiler.ts │ │ │ └── lang-twig.ts │ │ ├── typescript │ │ │ ├── index.ts │ │ │ └── lang-typescript.ts │ │ ├── unocss │ │ │ ├── index.ts │ │ │ ├── processor-unocss-compiler.ts │ │ │ └── processor-unocss.ts │ │ ├── utils.ts │ │ ├── vento │ │ │ ├── index.ts │ │ │ ├── lang-vento-compiler.ts │ │ │ └── lang-vento.ts │ │ ├── vue │ │ │ ├── index.ts │ │ │ ├── lang-vue-compiler.ts │ │ │ └── lang-vue.ts │ │ ├── vue2 │ │ │ ├── index.ts │ │ │ ├── lang-vue2-compiler.ts │ │ │ └── lang-vue2.ts │ │ ├── wat │ │ │ ├── index.ts │ │ │ ├── lang-wat-compiler.ts │ │ │ ├── lang-wat-script.ts │ │ │ └── lang-wat.ts │ │ └── windicss │ │ │ ├── index.ts │ │ │ ├── processor-windicss-compiler.ts │ │ │ └── processor-windicss.ts │ ├── main.ts │ ├── models.ts │ ├── notifications │ │ ├── __tests__ │ │ │ └── create-notifications.spec.ts │ │ ├── create-notifications.ts │ │ ├── index.ts │ │ └── snackbar.ts │ ├── result │ │ ├── __tests__ │ │ │ └── type-of.spec.ts │ │ ├── index.ts │ │ ├── result-page.ts │ │ ├── result-utils.ts │ │ └── utils.ts │ ├── services │ │ ├── __tests__ │ │ │ └── modulesService.spec.ts │ │ ├── allowed-origin.ts │ │ ├── auth.ts │ │ ├── broadcast.ts │ │ ├── cors.ts │ │ ├── firebase.ts │ │ ├── github.ts │ │ ├── google-fonts.ts │ │ ├── index.ts │ │ ├── modules.ts │ │ ├── permanent-url.ts │ │ ├── pkgInfo.ts │ │ ├── sandbox.ts │ │ ├── share.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── storage │ │ ├── encrypt.ts │ │ ├── fake-storage.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── project-storage.ts │ │ ├── simple-storage.ts │ │ ├── storage.ts │ │ └── stores.ts │ ├── styles │ │ ├── app.scss │ │ ├── inc-icons-share.css │ │ ├── inc-icons.css │ │ ├── inc-light.scss │ │ ├── inc-menu.scss │ │ ├── inc-modal.scss │ │ ├── inc-rtl.scss │ │ ├── index.css │ │ └── quill.css │ ├── sync │ │ ├── diff.ts │ │ ├── index.ts │ │ ├── models.ts │ │ ├── sync.ts │ │ └── sync.worker.ts │ ├── templates │ │ ├── get-starter-templates.ts │ │ ├── index.ts │ │ └── starter │ │ │ ├── angular-starter.ts │ │ │ ├── assemblyscript-starter.ts │ │ │ ├── astro-starter.ts │ │ │ ├── backbone-starter.ts │ │ │ ├── blank.ts │ │ │ ├── blockly-starter.ts │ │ │ ├── bootstrap-starter.ts │ │ │ ├── civet-starter.ts │ │ │ ├── clio-starter.ts │ │ │ ├── clojurescript-starter.ts │ │ │ ├── coffeescript-starter.ts │ │ │ ├── commonlisp-starter.ts │ │ │ ├── cpp-starter.ts │ │ │ ├── cpp-wasm-starter.ts │ │ │ ├── csharp-wasm-starter.ts │ │ │ ├── d3-starter.ts │ │ │ ├── daisyui-starter.ts │ │ │ ├── diagrams-starter.ts │ │ │ ├── fennel-starter.ts │ │ │ ├── gleam-starter.ts │ │ │ ├── go-starter.ts │ │ │ ├── go-wasm-starter.ts │ │ │ ├── imba-starter.ts │ │ │ ├── index.ts │ │ │ ├── java-starter.ts │ │ │ ├── javascript-starter.ts │ │ │ ├── jest-react-starter.ts │ │ │ ├── jest-starter.ts │ │ │ ├── jquery-starter.ts │ │ │ ├── julia-starter.ts │ │ │ ├── knockout-starter.ts │ │ │ ├── lit-starter.ts │ │ │ ├── livescript-starter.ts │ │ │ ├── lua-starter.ts │ │ │ ├── lua-wasm-starter.ts │ │ │ ├── malina-starter.ts │ │ │ ├── markdown-starter.ts │ │ │ ├── mdx-starter.ts │ │ │ ├── ocaml-starter.ts │ │ │ ├── perl-starter.ts │ │ │ ├── phaser-starter.ts │ │ │ ├── php-starter.ts │ │ │ ├── php-wasm-starter.ts │ │ │ ├── postgresql-starter.ts │ │ │ ├── preact-starter.ts │ │ │ ├── prolog-starter.ts │ │ │ ├── python-starter.ts │ │ │ ├── python-wasm-starter.ts │ │ │ ├── r-starter.ts │ │ │ ├── react-native-starter.ts │ │ │ ├── react-starter.ts │ │ │ ├── reason-starter.ts │ │ │ ├── rescript-starter.ts │ │ │ ├── riot-starter.ts │ │ │ ├── ruby-starter.ts │ │ │ ├── ruby-wasm-starter.ts │ │ │ ├── scheme-starter.ts │ │ │ ├── shadcn-ui-starter.ts │ │ │ ├── solid-starter.ts │ │ │ ├── sql-starter.ts │ │ │ ├── stencil-starter.ts │ │ │ ├── svelte-starter.ts │ │ │ ├── tailwindcss-starter.ts │ │ │ ├── tcl-starter.ts │ │ │ ├── teal-starter.ts │ │ │ ├── typescript-starter.ts │ │ │ ├── vue-sfc-starter.ts │ │ │ ├── vue2-starter.ts │ │ │ └── wat-starter.ts │ ├── toolspane │ │ ├── compiled-code-viewer.ts │ │ ├── console.ts │ │ ├── index.ts │ │ ├── test-imports.ts │ │ ├── test-viewer.ts │ │ └── tools.ts │ ├── types │ │ ├── bundle-types.ts │ │ ├── default-types.ts │ │ ├── index.ts │ │ └── type-loader.ts │ ├── utils │ │ ├── __tests__ │ │ │ ├── object-filter.spec.ts │ │ │ ├── object-map.spec.ts │ │ │ └── utils.spec.ts │ │ ├── compression.ts │ │ ├── get-import-instance.ts │ │ ├── index.ts │ │ └── utils.ts │ └── vendors.ts ├── netlify.toml └── sdk │ ├── __tests__ │ └── getPlaygroundUrl.test.ts │ ├── index.ts │ ├── models.ts │ ├── package.sdk.json │ ├── react.tsx │ └── vue.ts ├── storybook ├── .npmrc ├── .storybook │ ├── main.js │ ├── manager.js │ └── preview.js ├── package-lock.json ├── package.json ├── public │ ├── livecodes-logo.svg │ └── livecodes-text-logo.svg ├── src │ ├── LiveCodes.ts │ ├── create-story.ts │ ├── deps.ts │ └── index.ts ├── stories │ ├── Basic.stories.ts │ └── EmbedOptions │ │ ├── appUrl.stories.ts │ │ ├── config.stories.ts │ │ ├── import.stories.ts │ │ ├── lite.stories.ts │ │ ├── loading.stories.ts │ │ ├── params.stories.ts │ │ ├── template.stories.ts │ │ └── view.stories.ts └── tsconfig.json ├── tsconfig.eslint.json ├── tsconfig.json ├── tsconfig.sdk.json ├── typos.toml └── vendor-licenses.md /.bundlewatch.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.bundlewatch.config.js -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/i18n_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/ISSUE_TEMPLATE/i18n_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/CI-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/CI-build.yml -------------------------------------------------------------------------------- /.github/workflows/CI-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/CI-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/CI-typos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/CI-typos.yml -------------------------------------------------------------------------------- /.github/workflows/bundle-size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/bundle-size.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docker-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/docker-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/i18n-update-notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/i18n-update-notify.yml -------------------------------------------------------------------------------- /.github/workflows/i18n-update-pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/i18n-update-pull.yml -------------------------------------------------------------------------------- /.github/workflows/i18n-update-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/i18n-update-push.yml -------------------------------------------------------------------------------- /.github/workflows/release-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/release-pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.gitignore -------------------------------------------------------------------------------- /.jest/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.jest/setup.ts -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v24.4.1 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.prettierignore -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.stylelintrc.json -------------------------------------------------------------------------------- /.vscode/html.html-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.vscode/html.html-data.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/Dockerfile -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/docs/about.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/about.mdx -------------------------------------------------------------------------------- /docs/docs/advanced/custom-settings.mdx: -------------------------------------------------------------------------------- 1 | # Custom Settings 2 | -------------------------------------------------------------------------------- /docs/docs/advanced/docker.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/advanced/docker.mdx -------------------------------------------------------------------------------- /docs/docs/advanced/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/advanced/index.mdx -------------------------------------------------------------------------------- /docs/docs/advanced/services.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/advanced/services.mdx -------------------------------------------------------------------------------- /docs/docs/bookmarklet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/bookmarklet.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/configuration/index.mdx -------------------------------------------------------------------------------- /docs/docs/configuration/query-params.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/configuration/query-params.mdx -------------------------------------------------------------------------------- /docs/docs/contact.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/contact.mdx -------------------------------------------------------------------------------- /docs/docs/contribution.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/contribution.mdx -------------------------------------------------------------------------------- /docs/docs/contribution/i18n.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/contribution/i18n.mdx -------------------------------------------------------------------------------- /docs/docs/contribution/release.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/contribution/release.mdx -------------------------------------------------------------------------------- /docs/docs/credits.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/credits.mdx -------------------------------------------------------------------------------- /docs/docs/examples/display-modes/full.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/examples/display-modes/full.mdx -------------------------------------------------------------------------------- /docs/docs/features/ai.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/ai.mdx -------------------------------------------------------------------------------- /docs/docs/features/assets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/assets.mdx -------------------------------------------------------------------------------- /docs/docs/features/backup-restore.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/backup-restore.mdx -------------------------------------------------------------------------------- /docs/docs/features/broadcast.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/broadcast.mdx -------------------------------------------------------------------------------- /docs/docs/features/code-format.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/code-format.mdx -------------------------------------------------------------------------------- /docs/docs/features/code-prefill.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/code-prefill.mdx -------------------------------------------------------------------------------- /docs/docs/features/code-to-image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/code-to-image.mdx -------------------------------------------------------------------------------- /docs/docs/features/command-menu.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/command-menu.mdx -------------------------------------------------------------------------------- /docs/docs/features/compiled-code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/compiled-code.mdx -------------------------------------------------------------------------------- /docs/docs/features/console.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/console.mdx -------------------------------------------------------------------------------- /docs/docs/features/css.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/css.mdx -------------------------------------------------------------------------------- /docs/docs/features/data-urls.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/data-urls.mdx -------------------------------------------------------------------------------- /docs/docs/features/default-view.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/default-view.mdx -------------------------------------------------------------------------------- /docs/docs/features/deploy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/deploy.mdx -------------------------------------------------------------------------------- /docs/docs/features/display-modes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/display-modes.mdx -------------------------------------------------------------------------------- /docs/docs/features/editor-settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/editor-settings.mdx -------------------------------------------------------------------------------- /docs/docs/features/embeds.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/embeds.mdx -------------------------------------------------------------------------------- /docs/docs/features/emmet.mdx: -------------------------------------------------------------------------------- 1 | # Emmet Support 2 | -------------------------------------------------------------------------------- /docs/docs/features/export.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/export.mdx -------------------------------------------------------------------------------- /docs/docs/features/external-resources.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/external-resources.mdx -------------------------------------------------------------------------------- /docs/docs/features/github-integration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/github-integration.mdx -------------------------------------------------------------------------------- /docs/docs/features/i18n.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/i18n.mdx -------------------------------------------------------------------------------- /docs/docs/features/import.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/import.mdx -------------------------------------------------------------------------------- /docs/docs/features/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/index.mdx -------------------------------------------------------------------------------- /docs/docs/features/integrations.mdx: -------------------------------------------------------------------------------- 1 | # Integrations 2 | -------------------------------------------------------------------------------- /docs/docs/features/intellisense.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/intellisense.mdx -------------------------------------------------------------------------------- /docs/docs/features/keyboard-shortcuts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/keyboard-shortcuts.mdx -------------------------------------------------------------------------------- /docs/docs/features/lite.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/lite.mdx -------------------------------------------------------------------------------- /docs/docs/features/mobile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/mobile.mdx -------------------------------------------------------------------------------- /docs/docs/features/module-resolution.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/module-resolution.mdx -------------------------------------------------------------------------------- /docs/docs/features/permanent-url.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/permanent-url.mdx -------------------------------------------------------------------------------- /docs/docs/features/projects.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/projects.mdx -------------------------------------------------------------------------------- /docs/docs/features/read-only.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/read-only.mdx -------------------------------------------------------------------------------- /docs/docs/features/recover.mdx: -------------------------------------------------------------------------------- 1 | # Recover Unsaved 2 | -------------------------------------------------------------------------------- /docs/docs/features/result.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/result.mdx -------------------------------------------------------------------------------- /docs/docs/features/security.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/security.mdx -------------------------------------------------------------------------------- /docs/docs/features/self-hosting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/self-hosting.mdx -------------------------------------------------------------------------------- /docs/docs/features/share.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/share.mdx -------------------------------------------------------------------------------- /docs/docs/features/snippets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/snippets.mdx -------------------------------------------------------------------------------- /docs/docs/features/sync.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/sync.mdx -------------------------------------------------------------------------------- /docs/docs/features/templates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/templates.mdx -------------------------------------------------------------------------------- /docs/docs/features/tests.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/tests.mdx -------------------------------------------------------------------------------- /docs/docs/features/themes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/themes.mdx -------------------------------------------------------------------------------- /docs/docs/features/tools-pane.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/tools-pane.mdx -------------------------------------------------------------------------------- /docs/docs/features/user-management.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/user-management.mdx -------------------------------------------------------------------------------- /docs/docs/features/user-settings.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/features/user-settings.mdx -------------------------------------------------------------------------------- /docs/docs/features/welcome.mdx: -------------------------------------------------------------------------------- 1 | # Welcome Screen 2 | -------------------------------------------------------------------------------- /docs/docs/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/getting-started.mdx -------------------------------------------------------------------------------- /docs/docs/gh-action.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/gh-action.mdx -------------------------------------------------------------------------------- /docs/docs/languages/_template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/_template.mdx -------------------------------------------------------------------------------- /docs/docs/languages/art-template.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/art-template.mdx -------------------------------------------------------------------------------- /docs/docs/languages/asciidoc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/asciidoc.mdx -------------------------------------------------------------------------------- /docs/docs/languages/assemblyscript.mdx: -------------------------------------------------------------------------------- 1 | # AssemblyScript 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/astro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/astro.mdx -------------------------------------------------------------------------------- /docs/docs/languages/autoprefixer.mdx: -------------------------------------------------------------------------------- 1 | # Autoprefixer 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/babel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/babel.mdx -------------------------------------------------------------------------------- /docs/docs/languages/bbcode.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/bbcode.mdx -------------------------------------------------------------------------------- /docs/docs/languages/blockly.mdx: -------------------------------------------------------------------------------- 1 | # Blockly 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/civet.mdx: -------------------------------------------------------------------------------- 1 | # Civet 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/clio.mdx: -------------------------------------------------------------------------------- 1 | # Clio 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/clojurescript.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/clojurescript.mdx -------------------------------------------------------------------------------- /docs/docs/languages/coffeescript.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/coffeescript.mdx -------------------------------------------------------------------------------- /docs/docs/languages/commonlisp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/commonlisp.mdx -------------------------------------------------------------------------------- /docs/docs/languages/cpp-wasm.mdx: -------------------------------------------------------------------------------- 1 | # C/C++ (Wasm) 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/cpp.mdx: -------------------------------------------------------------------------------- 1 | # C++ 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/csharp-wasm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/csharp-wasm.mdx -------------------------------------------------------------------------------- /docs/docs/languages/css.mdx: -------------------------------------------------------------------------------- 1 | # CSS 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/cssmodules.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/cssmodules.mdx -------------------------------------------------------------------------------- /docs/docs/languages/cssnano.mdx: -------------------------------------------------------------------------------- 1 | # cssnano 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/diagrams.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/diagrams.mdx -------------------------------------------------------------------------------- /docs/docs/languages/dot.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/dot.mdx -------------------------------------------------------------------------------- /docs/docs/languages/ejs.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/ejs.mdx -------------------------------------------------------------------------------- /docs/docs/languages/eta.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/eta.mdx -------------------------------------------------------------------------------- /docs/docs/languages/fennel.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/fennel.mdx -------------------------------------------------------------------------------- /docs/docs/languages/flow.mdx: -------------------------------------------------------------------------------- 1 | # Flow 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/gleam.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/gleam.mdx -------------------------------------------------------------------------------- /docs/docs/languages/go-wasm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/go-wasm.mdx -------------------------------------------------------------------------------- /docs/docs/languages/go.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/go.mdx -------------------------------------------------------------------------------- /docs/docs/languages/haml.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/haml.mdx -------------------------------------------------------------------------------- /docs/docs/languages/handlebars.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/handlebars.mdx -------------------------------------------------------------------------------- /docs/docs/languages/html.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/html.mdx -------------------------------------------------------------------------------- /docs/docs/languages/imba.mdx: -------------------------------------------------------------------------------- 1 | # Imba 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/img/flow-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/img/flow-chart.svg -------------------------------------------------------------------------------- /docs/docs/languages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/index.mdx -------------------------------------------------------------------------------- /docs/docs/languages/java.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/java.mdx -------------------------------------------------------------------------------- /docs/docs/languages/javascript.mdx: -------------------------------------------------------------------------------- 1 | # JavaScript 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/jinja.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/jinja.mdx -------------------------------------------------------------------------------- /docs/docs/languages/jsx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/jsx.mdx -------------------------------------------------------------------------------- /docs/docs/languages/julia.mdx: -------------------------------------------------------------------------------- 1 | # Julia 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/less.mdx: -------------------------------------------------------------------------------- 1 | # Less 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/lightningcss.mdx: -------------------------------------------------------------------------------- 1 | # Lightning CSS 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/liquid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/liquid.mdx -------------------------------------------------------------------------------- /docs/docs/languages/livescript.mdx: -------------------------------------------------------------------------------- 1 | # LiveScript 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/lua-wasm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/lua-wasm.mdx -------------------------------------------------------------------------------- /docs/docs/languages/lua.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/lua.mdx -------------------------------------------------------------------------------- /docs/docs/languages/malina.mdx: -------------------------------------------------------------------------------- 1 | # Malina.js 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/markdown.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/markdown.mdx -------------------------------------------------------------------------------- /docs/docs/languages/mdx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/mdx.mdx -------------------------------------------------------------------------------- /docs/docs/languages/mjml.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/mjml.mdx -------------------------------------------------------------------------------- /docs/docs/languages/mustache.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/mustache.mdx -------------------------------------------------------------------------------- /docs/docs/languages/nunjucks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/nunjucks.mdx -------------------------------------------------------------------------------- /docs/docs/languages/ocaml.mdx: -------------------------------------------------------------------------------- 1 | # OCaml 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/perl.mdx: -------------------------------------------------------------------------------- 1 | # Perl 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/php-wasm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/php-wasm.mdx -------------------------------------------------------------------------------- /docs/docs/languages/php.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/php.mdx -------------------------------------------------------------------------------- /docs/docs/languages/postcss.mdx: -------------------------------------------------------------------------------- 1 | # PostCSS 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/postcssImportUrl.mdx: -------------------------------------------------------------------------------- 1 | # Import Url 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/postcssPresetEnv.mdx: -------------------------------------------------------------------------------- 1 | # Preset Env 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/postgresql.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/postgresql.mdx -------------------------------------------------------------------------------- /docs/docs/languages/prolog.mdx: -------------------------------------------------------------------------------- 1 | # Prolog 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/pug.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/pug.mdx -------------------------------------------------------------------------------- /docs/docs/languages/purgecss.mdx: -------------------------------------------------------------------------------- 1 | # PurgeCSS 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/python-wasm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/python-wasm.mdx -------------------------------------------------------------------------------- /docs/docs/languages/python.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/python.mdx -------------------------------------------------------------------------------- /docs/docs/languages/r.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/r.mdx -------------------------------------------------------------------------------- /docs/docs/languages/react-native-tsx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/react-native-tsx.mdx -------------------------------------------------------------------------------- /docs/docs/languages/react-native.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/react-native.mdx -------------------------------------------------------------------------------- /docs/docs/languages/react-tsx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/react-tsx.mdx -------------------------------------------------------------------------------- /docs/docs/languages/react.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/react.mdx -------------------------------------------------------------------------------- /docs/docs/languages/reason.mdx: -------------------------------------------------------------------------------- 1 | # Reason 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/rescript.mdx: -------------------------------------------------------------------------------- 1 | # ReScript 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/richtext.mdx: -------------------------------------------------------------------------------- 1 | # Rich Text Editor 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/riot.mdx: -------------------------------------------------------------------------------- 1 | # Riot.js 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/ruby-wasm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/ruby-wasm.mdx -------------------------------------------------------------------------------- /docs/docs/languages/ruby.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/ruby.mdx -------------------------------------------------------------------------------- /docs/docs/languages/sass.mdx: -------------------------------------------------------------------------------- 1 | # Sass 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/scheme.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/scheme.mdx -------------------------------------------------------------------------------- /docs/docs/languages/scss.mdx: -------------------------------------------------------------------------------- 1 | # SCSS 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/solid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/solid.mdx -------------------------------------------------------------------------------- /docs/docs/languages/solid.tsx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/solid.tsx.mdx -------------------------------------------------------------------------------- /docs/docs/languages/sql.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/sql.mdx -------------------------------------------------------------------------------- /docs/docs/languages/stencil.mdx: -------------------------------------------------------------------------------- 1 | # Stencil 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/stylis.mdx: -------------------------------------------------------------------------------- 1 | # Stylis 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/stylus.mdx: -------------------------------------------------------------------------------- 1 | # Stylus 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/sucrase.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/sucrase.mdx -------------------------------------------------------------------------------- /docs/docs/languages/svelte.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/svelte.mdx -------------------------------------------------------------------------------- /docs/docs/languages/tailwindcss.mdx: -------------------------------------------------------------------------------- 1 | # Tailwind CSS 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/tcl.mdx: -------------------------------------------------------------------------------- 1 | # Tcl 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/teal.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/teal.mdx -------------------------------------------------------------------------------- /docs/docs/languages/tokencss.mdx: -------------------------------------------------------------------------------- 1 | # Token CSS 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/tsx.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/tsx.mdx -------------------------------------------------------------------------------- /docs/docs/languages/twig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/twig.mdx -------------------------------------------------------------------------------- /docs/docs/languages/typescript.mdx: -------------------------------------------------------------------------------- 1 | # TypeScript 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/unocss.mdx: -------------------------------------------------------------------------------- 1 | # UnoCSS 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/vento.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/vento.mdx -------------------------------------------------------------------------------- /docs/docs/languages/vue.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/vue.mdx -------------------------------------------------------------------------------- /docs/docs/languages/vue2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/languages/vue2.mdx -------------------------------------------------------------------------------- /docs/docs/languages/wat.mdx: -------------------------------------------------------------------------------- 1 | # WebAssembly Text 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/languages/windicss.mdx: -------------------------------------------------------------------------------- 1 | # Windi CSS 2 | 3 | TODO... 4 | -------------------------------------------------------------------------------- /docs/docs/license.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/license.mdx -------------------------------------------------------------------------------- /docs/docs/markdown-to-livecodes.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/markdown-to-livecodes.mdx -------------------------------------------------------------------------------- /docs/docs/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/overview.mdx -------------------------------------------------------------------------------- /docs/docs/sdk/headless.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/sdk/headless.mdx -------------------------------------------------------------------------------- /docs/docs/sdk/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/sdk/index.mdx -------------------------------------------------------------------------------- /docs/docs/sdk/js-ts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/sdk/js-ts.mdx -------------------------------------------------------------------------------- /docs/docs/sdk/react.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/sdk/react.mdx -------------------------------------------------------------------------------- /docs/docs/sdk/solid.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/sdk/solid.mdx -------------------------------------------------------------------------------- /docs/docs/sdk/svelte.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/sdk/svelte.mdx -------------------------------------------------------------------------------- /docs/docs/sdk/vue.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/sdk/vue.mdx -------------------------------------------------------------------------------- /docs/docs/sponsor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/sponsor.mdx -------------------------------------------------------------------------------- /docs/docs/tutorials/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/tutorials/index.mdx -------------------------------------------------------------------------------- /docs/docs/why.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docs/why.mdx -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/ContactForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/ContactForm.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/HomepageCarousel.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/HomepageFeatures.tsx -------------------------------------------------------------------------------- /docs/src/components/LanguageSliders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/LanguageSliders.tsx -------------------------------------------------------------------------------- /docs/src/components/LiveCodes.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/LiveCodes.module.css -------------------------------------------------------------------------------- /docs/src/components/LiveCodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/LiveCodes.tsx -------------------------------------------------------------------------------- /docs/src/components/MailLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/MailLink.tsx -------------------------------------------------------------------------------- /docs/src/components/OpenCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/OpenCode.tsx -------------------------------------------------------------------------------- /docs/src/components/RunInLiveCodes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/RunInLiveCodes.tsx -------------------------------------------------------------------------------- /docs/src/components/ShowCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/ShowCode.tsx -------------------------------------------------------------------------------- /docs/src/components/TemplateList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/TemplateList.tsx -------------------------------------------------------------------------------- /docs/src/components/ThemeDemo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/ThemeDemo.module.css -------------------------------------------------------------------------------- /docs/src/components/ThemeDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/ThemeDemo.tsx -------------------------------------------------------------------------------- /docs/src/components/Versions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/components/Versions.tsx -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/custom-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/custom-content.ts -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/plugins/generate-llms-txt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/plugins/generate-llms-txt.ts -------------------------------------------------------------------------------- /docs/src/sponsors-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/sponsors-list.ts -------------------------------------------------------------------------------- /docs/src/theme/DocItem/Layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/theme/DocItem/Layout/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/Heading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/theme/Heading/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/Heading/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/theme/Heading/styles.module.css -------------------------------------------------------------------------------- /docs/src/theme/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/theme/Root.tsx -------------------------------------------------------------------------------- /docs/src/theme/TOCItems/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/theme/TOCItems/index.tsx -------------------------------------------------------------------------------- /docs/src/theme/TOCItems/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/theme/TOCItems/styles.module.css -------------------------------------------------------------------------------- /docs/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/src/utils.ts -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/add-frame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/add-frame.svg -------------------------------------------------------------------------------- /docs/static/img/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/arrow.svg -------------------------------------------------------------------------------- /docs/static/img/clients.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/clients.svg -------------------------------------------------------------------------------- /docs/static/img/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/code.svg -------------------------------------------------------------------------------- /docs/static/img/credits/browserstack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/browserstack.svg -------------------------------------------------------------------------------- /docs/static/img/credits/bundlejs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/bundlejs.jpg -------------------------------------------------------------------------------- /docs/static/img/credits/bundlejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/bundlejs.svg -------------------------------------------------------------------------------- /docs/static/img/credits/bundlewatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/bundlewatch.svg -------------------------------------------------------------------------------- /docs/static/img/credits/codacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/codacy.svg -------------------------------------------------------------------------------- /docs/static/img/credits/codeium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/codeium.svg -------------------------------------------------------------------------------- /docs/static/img/credits/digital-ocean.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/digital-ocean.svg -------------------------------------------------------------------------------- /docs/static/img/credits/dpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/dpaste.png -------------------------------------------------------------------------------- /docs/static/img/credits/esm.sh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/esm.sh.png -------------------------------------------------------------------------------- /docs/static/img/credits/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/github.png -------------------------------------------------------------------------------- /docs/static/img/credits/jsdelivr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/jsdelivr.svg -------------------------------------------------------------------------------- /docs/static/img/credits/jspm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/jspm.png -------------------------------------------------------------------------------- /docs/static/img/credits/kapa-ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/kapa-ai.jpg -------------------------------------------------------------------------------- /docs/static/img/credits/lokalise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/lokalise.png -------------------------------------------------------------------------------- /docs/static/img/credits/netlify.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/netlify.svg -------------------------------------------------------------------------------- /docs/static/img/credits/skypack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/skypack.svg -------------------------------------------------------------------------------- /docs/static/img/credits/sonarcloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/sonarcloud.svg -------------------------------------------------------------------------------- /docs/static/img/credits/unpkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/unpkg.png -------------------------------------------------------------------------------- /docs/static/img/credits/windsurf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/credits/windsurf.svg -------------------------------------------------------------------------------- /docs/static/img/data-privacy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/data-privacy.svg -------------------------------------------------------------------------------- /docs/static/img/docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/docs.svg -------------------------------------------------------------------------------- /docs/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/docusaurus.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/feather.svg -------------------------------------------------------------------------------- /docs/static/img/integrations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/integrations.svg -------------------------------------------------------------------------------- /docs/static/img/light-bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/light-bulb.svg -------------------------------------------------------------------------------- /docs/static/img/livecodes-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/livecodes-logo.svg -------------------------------------------------------------------------------- /docs/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/logo.svg -------------------------------------------------------------------------------- /docs/static/img/magic-wand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/magic-wand.svg -------------------------------------------------------------------------------- /docs/static/img/oss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/oss.svg -------------------------------------------------------------------------------- /docs/static/img/pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/pen.svg -------------------------------------------------------------------------------- /docs/static/img/responsive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/responsive.svg -------------------------------------------------------------------------------- /docs/static/img/screenshots/ai-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/ai-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/assets-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/assets-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/assets-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/assets-2.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/assets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/assets.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/assets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/assets.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/backup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/backup.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/broadcast.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/broadcast.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/console-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/console-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/console.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/console.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/console.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/deploy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/deploy-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/deploy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/deploy.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/deploy.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/embed-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/embed-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/embed-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/embed-2.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/embed-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/embed-3.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/embed.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/embed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/embed1.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/embed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/embed2.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/embed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/embed3.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/export-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/export-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/export-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/export-2.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/export.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/export.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/export.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/features.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/features.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/format-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/format-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/format.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/format.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/full-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/full-mode.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/i18n-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/i18n-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/i18n-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/i18n-2.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/i18n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/i18n.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/import-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/import-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/import-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/import-2.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/import.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/import.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/languages.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/languages.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/languages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/languages.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/menu.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/mode-full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/mode-full.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/resources.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/resources.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/restore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/restore.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/share-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/share-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/share-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/share-2.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/share-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/share-3.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/share.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/share.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/share.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/share2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/share2.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/snippets.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/snippets.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/snippets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/snippets.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/spacing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/spacing.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/spacings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/spacings.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/styles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/styles.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/sync-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/sync-menu.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/sync.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/sync.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/sync.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/sync2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/sync2.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/tests.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/tests.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/tests.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/themes-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/themes-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/themes-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/themes-2.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/themes-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/themes-3.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/themes-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/themes-4.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/themes-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/themes-5.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/twoslash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/twoslash.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/twoslash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/twoslash.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/welcome-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/welcome-1.jpg -------------------------------------------------------------------------------- /docs/static/img/screenshots/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/welcome.png -------------------------------------------------------------------------------- /docs/static/img/screenshots/zoom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/screenshots/zoom.jpg -------------------------------------------------------------------------------- /docs/static/img/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/img/star.svg -------------------------------------------------------------------------------- /docs/static/vid/LiveCodes-AI-py.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/vid/LiveCodes-AI-py.mp4 -------------------------------------------------------------------------------- /docs/static/vid/LiveCodes-AI-py.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/vid/LiveCodes-AI-py.webm -------------------------------------------------------------------------------- /docs/static/vid/LiveCodes-AI.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/vid/LiveCodes-AI.mp4 -------------------------------------------------------------------------------- /docs/static/vid/LiveCodes-AI.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/static/vid/LiveCodes-AI.webm -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /e2e/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/.eslintrc -------------------------------------------------------------------------------- /e2e/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/global-setup.ts -------------------------------------------------------------------------------- /e2e/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/helpers.ts -------------------------------------------------------------------------------- /e2e/specs/compilers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/compilers.spec.ts -------------------------------------------------------------------------------- /e2e/specs/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/config.spec.ts -------------------------------------------------------------------------------- /e2e/specs/css-modules.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/css-modules.spec.ts -------------------------------------------------------------------------------- /e2e/specs/custom-settings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/custom-settings.spec.ts -------------------------------------------------------------------------------- /e2e/specs/defaults.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/defaults.spec.ts -------------------------------------------------------------------------------- /e2e/specs/i18n.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/i18n.spec.ts -------------------------------------------------------------------------------- /e2e/specs/import-map.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/import-map.spec.ts -------------------------------------------------------------------------------- /e2e/specs/import.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/import.spec.ts -------------------------------------------------------------------------------- /e2e/specs/jsx.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/jsx.spec.ts -------------------------------------------------------------------------------- /e2e/specs/screens.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/screens.spec.ts -------------------------------------------------------------------------------- /e2e/specs/sdk-options.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/sdk-options.spec.ts -------------------------------------------------------------------------------- /e2e/specs/sfc-processors.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/sfc-processors.spec.ts -------------------------------------------------------------------------------- /e2e/specs/starter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/specs/starter.spec.ts -------------------------------------------------------------------------------- /e2e/test-fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/e2e/test-fixtures.ts -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /functions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/functions/index.ts -------------------------------------------------------------------------------- /functions/oembed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/functions/oembed.ts -------------------------------------------------------------------------------- /functions/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/functions/utils.ts -------------------------------------------------------------------------------- /functions/vendors/compression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/functions/vendors/compression.js -------------------------------------------------------------------------------- /functions/vendors/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/functions/vendors/templates.js -------------------------------------------------------------------------------- /images/livecodes-export-import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/livecodes-export-import.svg -------------------------------------------------------------------------------- /images/logo/README.md: -------------------------------------------------------------------------------- 1 | created in https://vecta.io 2 | -------------------------------------------------------------------------------- /images/logo/favicon_package_v0.16.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/favicon_package_v0.16.zip -------------------------------------------------------------------------------- /images/logo/livecodes-logo-border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/livecodes-logo-border.svg -------------------------------------------------------------------------------- /images/logo/livecodes-logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/livecodes-logo-icon.svg -------------------------------------------------------------------------------- /images/logo/livecodes-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/livecodes-logo.png -------------------------------------------------------------------------------- /images/logo/livecodes-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/livecodes-logo.svg -------------------------------------------------------------------------------- /images/logo/livecodes-text-logo-flat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/livecodes-text-logo-flat.svg -------------------------------------------------------------------------------- /images/logo/livecodes-text-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/livecodes-text-logo.jpg -------------------------------------------------------------------------------- /images/logo/livecodes-text-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/livecodes-text-logo.png -------------------------------------------------------------------------------- /images/logo/livecodes-text-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/livecodes-text-logo.svg -------------------------------------------------------------------------------- /images/logo/more/404-src.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/more/404-src.svg -------------------------------------------------------------------------------- /images/logo/more/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/more/404.png -------------------------------------------------------------------------------- /images/logo/more/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/more/404.svg -------------------------------------------------------------------------------- /images/logo/more/happy-livecodes-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/more/happy-livecodes-2.png -------------------------------------------------------------------------------- /images/logo/more/happy-livecodes-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/more/happy-livecodes-2.svg -------------------------------------------------------------------------------- /images/logo/more/happy-livecodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/more/happy-livecodes.png -------------------------------------------------------------------------------- /images/logo/more/happy-livecodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/more/happy-livecodes.svg -------------------------------------------------------------------------------- /images/logo/more/winking-livecodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/more/winking-livecodes.png -------------------------------------------------------------------------------- /images/logo/more/winking-livecodes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/more/winking-livecodes.svg -------------------------------------------------------------------------------- /images/logo/src/livecodes-logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/src/livecodes-logo-icon.svg -------------------------------------------------------------------------------- /images/logo/src/livecodes-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/src/livecodes-logo.svg -------------------------------------------------------------------------------- /images/logo/src/livecodes-text-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/images/logo/src/livecodes-text-logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/package.json -------------------------------------------------------------------------------- /patches/codejar+4.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/patches/codejar+4.1.1.patch -------------------------------------------------------------------------------- /patches/git-semver-tags+4.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/patches/git-semver-tags+4.1.1.patch -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/bundle-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/bundle-types.js -------------------------------------------------------------------------------- /scripts/create-permanent-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/create-permanent-url.js -------------------------------------------------------------------------------- /scripts/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/hash.js -------------------------------------------------------------------------------- /scripts/i18n-exclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/i18n-exclude.js -------------------------------------------------------------------------------- /scripts/i18n-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/i18n-export.js -------------------------------------------------------------------------------- /scripts/i18n-import.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/i18n-import.mjs -------------------------------------------------------------------------------- /scripts/i18n-lokalise-json.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/i18n-lokalise-json.mjs -------------------------------------------------------------------------------- /scripts/i18n-upload.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/i18n-upload.mjs -------------------------------------------------------------------------------- /scripts/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/i18n.js -------------------------------------------------------------------------------- /scripts/inject-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/inject-css.js -------------------------------------------------------------------------------- /scripts/release-notes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/release-notes.js -------------------------------------------------------------------------------- /scripts/start-release.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/start-release.mjs -------------------------------------------------------------------------------- /scripts/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/styles.js -------------------------------------------------------------------------------- /scripts/test-filenames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/test-filenames.js -------------------------------------------------------------------------------- /scripts/test-i18n-exclude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/test-i18n-exclude.js -------------------------------------------------------------------------------- /scripts/test-i18n-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/test-i18n-export.js -------------------------------------------------------------------------------- /scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/utils.js -------------------------------------------------------------------------------- /scripts/vscode-intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/scripts/vscode-intellisense.js -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/README.md -------------------------------------------------------------------------------- /server/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/caddy/Caddyfile -------------------------------------------------------------------------------- /server/caddy/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/caddy/entrypoint.sh -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/src/app.ts -------------------------------------------------------------------------------- /server/src/broadcast/code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/src/broadcast/code.html -------------------------------------------------------------------------------- /server/src/broadcast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/src/broadcast/index.html -------------------------------------------------------------------------------- /server/src/broadcast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/src/broadcast/index.ts -------------------------------------------------------------------------------- /server/src/broadcast/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/src/broadcast/result.html -------------------------------------------------------------------------------- /server/src/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/src/cors.ts -------------------------------------------------------------------------------- /server/src/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/src/sandbox.ts -------------------------------------------------------------------------------- /server/src/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/src/share.ts -------------------------------------------------------------------------------- /server/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/server/src/utils.ts -------------------------------------------------------------------------------- /src/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/404.html -------------------------------------------------------------------------------- /src/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/_headers -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/index.html -------------------------------------------------------------------------------- /src/livecodes/UI/accordion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/accordion.ts -------------------------------------------------------------------------------- /src/livecodes/UI/assets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/assets.ts -------------------------------------------------------------------------------- /src/livecodes/UI/backup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/backup.ts -------------------------------------------------------------------------------- /src/livecodes/UI/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/broadcast.ts -------------------------------------------------------------------------------- /src/livecodes/UI/code-to-image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/code-to-image.ts -------------------------------------------------------------------------------- /src/livecodes/UI/command-menu-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/command-menu-actions.ts -------------------------------------------------------------------------------- /src/livecodes/UI/create-language-menus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/create-language-menus.ts -------------------------------------------------------------------------------- /src/livecodes/UI/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/deploy.ts -------------------------------------------------------------------------------- /src/livecodes/UI/editor-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/editor-settings.ts -------------------------------------------------------------------------------- /src/livecodes/UI/embed-ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/embed-ui.ts -------------------------------------------------------------------------------- /src/livecodes/UI/icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/icons.ts -------------------------------------------------------------------------------- /src/livecodes/UI/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/import.ts -------------------------------------------------------------------------------- /src/livecodes/UI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/index.ts -------------------------------------------------------------------------------- /src/livecodes/UI/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/info.ts -------------------------------------------------------------------------------- /src/livecodes/UI/loading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/loading.ts -------------------------------------------------------------------------------- /src/livecodes/UI/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/login.ts -------------------------------------------------------------------------------- /src/livecodes/UI/modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/modal.ts -------------------------------------------------------------------------------- /src/livecodes/UI/open.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/open.ts -------------------------------------------------------------------------------- /src/livecodes/UI/qrcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/qrcode.ts -------------------------------------------------------------------------------- /src/livecodes/UI/resources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/resources.ts -------------------------------------------------------------------------------- /src/livecodes/UI/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/selectors.ts -------------------------------------------------------------------------------- /src/livecodes/UI/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/share.ts -------------------------------------------------------------------------------- /src/livecodes/UI/snippets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/snippets.ts -------------------------------------------------------------------------------- /src/livecodes/UI/split-panes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/split-panes.ts -------------------------------------------------------------------------------- /src/livecodes/UI/sync-ui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/sync-ui.ts -------------------------------------------------------------------------------- /src/livecodes/UI/templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/templates.ts -------------------------------------------------------------------------------- /src/livecodes/UI/theme-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/UI/theme-colors.ts -------------------------------------------------------------------------------- /src/livecodes/_modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/_modules.ts -------------------------------------------------------------------------------- /src/livecodes/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/app.ts -------------------------------------------------------------------------------- /src/livecodes/assets/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/browserconfig.xml -------------------------------------------------------------------------------- /src/livecodes/assets/icons/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/cancel.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/codeium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/codeium.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/copy.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/edit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/edit.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/email.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/import.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/info.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/new.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/new.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/open.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/qr-code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/qr-code.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/recover.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/recover.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/save.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/share.svg -------------------------------------------------------------------------------- /src/livecodes/assets/icons/template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/icons/template.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/404.png -------------------------------------------------------------------------------- /src/livecodes/assets/images/archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/archive.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/audio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/audio.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/broadcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/broadcast.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/camera.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/codeium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/codeium.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/collapse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/collapse.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/copy.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/css.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/csv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/csv.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/expand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/expand.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/favicon.ico -------------------------------------------------------------------------------- /src/livecodes/assets/images/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/file.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/focus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/focus.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/font.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/format.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/format.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/gear.png -------------------------------------------------------------------------------- /src/livecodes/assets/images/gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/gear.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/html.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/icon.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/image.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/info.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/json.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/script.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/text.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/tick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/tick.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/video.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/windsurf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/windsurf.svg -------------------------------------------------------------------------------- /src/livecodes/assets/images/xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/images/xml.svg -------------------------------------------------------------------------------- /src/livecodes/assets/noop.js: -------------------------------------------------------------------------------- 1 | // do nothing 2 | -------------------------------------------------------------------------------- /src/livecodes/assets/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/site.webmanifest -------------------------------------------------------------------------------- /src/livecodes/assets/templates/astro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/astro.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/blank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/blank.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/civet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/civet.png -------------------------------------------------------------------------------- /src/livecodes/assets/templates/clio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/clio.png -------------------------------------------------------------------------------- /src/livecodes/assets/templates/cljs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/cljs.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/cpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/cpp.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/csharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/csharp.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/d3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/d3.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/fennel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/fennel.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/gleam.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/gleam.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/go.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/imba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/imba.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/java.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/jest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/jest.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/jquery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/jquery.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/julia.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/julia.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/lit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/lit.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/lua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/lua.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/malina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/malina.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/mdx.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/mdx.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/ocaml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/ocaml.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/perl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/perl.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/phaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/phaser.png -------------------------------------------------------------------------------- /src/livecodes/assets/templates/php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/php.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/preact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/preact.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/python.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/r.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/react.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/reason.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/reason.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/riot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/riot.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/ruby.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/sass.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/scheme.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/solid.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/sqlite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/sqlite.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/svelte.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/tcl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/tcl.svg -------------------------------------------------------------------------------- /src/livecodes/assets/templates/teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/teal.png -------------------------------------------------------------------------------- /src/livecodes/assets/templates/vue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/assets/templates/vue.svg -------------------------------------------------------------------------------- /src/livecodes/cache/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/cache/cache.ts -------------------------------------------------------------------------------- /src/livecodes/cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/cache/index.ts -------------------------------------------------------------------------------- /src/livecodes/cache/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/cache/utils.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/compile-blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/compile-blocks.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/compile.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/compile.page.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/compile.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/compile.worker.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/compiler-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/compiler-utils.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/create-compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/create-compiler.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/get-compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/get-compiler.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/import-map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/import-map.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/index.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/models.ts -------------------------------------------------------------------------------- /src/livecodes/compiler/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/compiler/utils.ts -------------------------------------------------------------------------------- /src/livecodes/config/build-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/config/build-config.ts -------------------------------------------------------------------------------- /src/livecodes/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/config/config.ts -------------------------------------------------------------------------------- /src/livecodes/config/default-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/config/default-config.ts -------------------------------------------------------------------------------- /src/livecodes/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/config/index.ts -------------------------------------------------------------------------------- /src/livecodes/config/upgrade-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/config/upgrade-config.ts -------------------------------------------------------------------------------- /src/livecodes/config/validate-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/config/validate-config.ts -------------------------------------------------------------------------------- /src/livecodes/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/core.ts -------------------------------------------------------------------------------- /src/livecodes/deploy/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/deploy/deploy.ts -------------------------------------------------------------------------------- /src/livecodes/deploy/index.ts: -------------------------------------------------------------------------------- 1 | export * from './deploy'; 2 | -------------------------------------------------------------------------------- /src/livecodes/editor/blockly/blockly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/blockly/blockly.html -------------------------------------------------------------------------------- /src/livecodes/editor/blockly/blockly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/blockly/blockly.ts -------------------------------------------------------------------------------- /src/livecodes/editor/blockly/index.ts: -------------------------------------------------------------------------------- 1 | export * from './blockly-editor'; 2 | -------------------------------------------------------------------------------- /src/livecodes/editor/codejar/codejar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/codejar/codejar.ts -------------------------------------------------------------------------------- /src/livecodes/editor/create-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/create-editor.ts -------------------------------------------------------------------------------- /src/livecodes/editor/custom-editors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/custom-editors.ts -------------------------------------------------------------------------------- /src/livecodes/editor/fake-editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/fake-editor.ts -------------------------------------------------------------------------------- /src/livecodes/editor/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/fonts.ts -------------------------------------------------------------------------------- /src/livecodes/editor/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/index.ts -------------------------------------------------------------------------------- /src/livecodes/editor/monaco/monaco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/monaco/monaco.ts -------------------------------------------------------------------------------- /src/livecodes/editor/quill/index.ts: -------------------------------------------------------------------------------- 1 | export * from './quill-editor'; 2 | -------------------------------------------------------------------------------- /src/livecodes/editor/quill/quill.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/quill/quill.html -------------------------------------------------------------------------------- /src/livecodes/editor/quill/quill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/quill/quill.ts -------------------------------------------------------------------------------- /src/livecodes/editor/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/editor/themes.ts -------------------------------------------------------------------------------- /src/livecodes/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/embed.ts -------------------------------------------------------------------------------- /src/livecodes/events/custom-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/events/custom-events.ts -------------------------------------------------------------------------------- /src/livecodes/events/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/events/events.ts -------------------------------------------------------------------------------- /src/livecodes/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/events/index.ts -------------------------------------------------------------------------------- /src/livecodes/events/pub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/events/pub.ts -------------------------------------------------------------------------------- /src/livecodes/export/export-codepen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/export/export-codepen.ts -------------------------------------------------------------------------------- /src/livecodes/export/export-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/export/export-html.ts -------------------------------------------------------------------------------- /src/livecodes/export/export-jsfiddle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/export/export-jsfiddle.ts -------------------------------------------------------------------------------- /src/livecodes/export/export-json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/export/export-json.ts -------------------------------------------------------------------------------- /src/livecodes/export/export-src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/export/export-src.ts -------------------------------------------------------------------------------- /src/livecodes/export/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/export/export.ts -------------------------------------------------------------------------------- /src/livecodes/export/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/export/index.ts -------------------------------------------------------------------------------- /src/livecodes/export/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/export/utils.ts -------------------------------------------------------------------------------- /src/livecodes/formatter/format.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/formatter/format.worker.ts -------------------------------------------------------------------------------- /src/livecodes/formatter/formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/formatter/formatter.ts -------------------------------------------------------------------------------- /src/livecodes/formatter/get-formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/formatter/get-formatter.ts -------------------------------------------------------------------------------- /src/livecodes/formatter/index.ts: -------------------------------------------------------------------------------- 1 | export * from './get-formatter'; 2 | -------------------------------------------------------------------------------- /src/livecodes/formatter/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/formatter/models.ts -------------------------------------------------------------------------------- /src/livecodes/headless.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/headless.ts -------------------------------------------------------------------------------- /src/livecodes/html/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/about.html -------------------------------------------------------------------------------- /src/livecodes/html/add-asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/add-asset.html -------------------------------------------------------------------------------- /src/livecodes/html/add-snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/add-snippet.html -------------------------------------------------------------------------------- /src/livecodes/html/app-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/app-base.html -------------------------------------------------------------------------------- /src/livecodes/html/app-menu-help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/app-menu-help.html -------------------------------------------------------------------------------- /src/livecodes/html/app-menu-project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/app-menu-project.html -------------------------------------------------------------------------------- /src/livecodes/html/app-menu-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/app-menu-settings.html -------------------------------------------------------------------------------- /src/livecodes/html/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/app.html -------------------------------------------------------------------------------- /src/livecodes/html/assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/assets.html -------------------------------------------------------------------------------- /src/livecodes/html/backup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/backup.html -------------------------------------------------------------------------------- /src/livecodes/html/broadcast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/broadcast.html -------------------------------------------------------------------------------- /src/livecodes/html/code-to-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/code-to-image.html -------------------------------------------------------------------------------- /src/livecodes/html/custom-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/custom-settings.html -------------------------------------------------------------------------------- /src/livecodes/html/deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/deploy.html -------------------------------------------------------------------------------- /src/livecodes/html/editor-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/editor-settings.html -------------------------------------------------------------------------------- /src/livecodes/html/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/embed.html -------------------------------------------------------------------------------- /src/livecodes/html/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/import.html -------------------------------------------------------------------------------- /src/livecodes/html/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/index.ts -------------------------------------------------------------------------------- /src/livecodes/html/language-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/language-info.html -------------------------------------------------------------------------------- /src/livecodes/html/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/login.html -------------------------------------------------------------------------------- /src/livecodes/html/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/open.html -------------------------------------------------------------------------------- /src/livecodes/html/project-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/project-info.html -------------------------------------------------------------------------------- /src/livecodes/html/recover-prompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/recover-prompt.html -------------------------------------------------------------------------------- /src/livecodes/html/result-popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/result-popup.html -------------------------------------------------------------------------------- /src/livecodes/html/sandbox/index.ts: -------------------------------------------------------------------------------- 1 | export const sandboxVersion = 'v9'; 2 | -------------------------------------------------------------------------------- /src/livecodes/html/sandbox/v9/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/sandbox/v9/index.html -------------------------------------------------------------------------------- /src/livecodes/html/save-prompt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/save-prompt.html -------------------------------------------------------------------------------- /src/livecodes/html/share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/share.html -------------------------------------------------------------------------------- /src/livecodes/html/snippets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/snippets.html -------------------------------------------------------------------------------- /src/livecodes/html/sync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/sync.html -------------------------------------------------------------------------------- /src/livecodes/html/templates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/templates.html -------------------------------------------------------------------------------- /src/livecodes/html/test-editor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/test-editor.html -------------------------------------------------------------------------------- /src/livecodes/html/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/html/welcome.html -------------------------------------------------------------------------------- /src/livecodes/i18n/app-languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/i18n/app-languages.ts -------------------------------------------------------------------------------- /src/livecodes/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/i18n/i18n.ts -------------------------------------------------------------------------------- /src/livecodes/i18n/i18next.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/i18n/i18next.d.ts -------------------------------------------------------------------------------- /src/livecodes/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/i18n/index.ts -------------------------------------------------------------------------------- /src/livecodes/i18n/locale-paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/i18n/locale-paths.ts -------------------------------------------------------------------------------- /src/livecodes/i18n/locales/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/i18n/locales/models.ts -------------------------------------------------------------------------------- /src/livecodes/i18n/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/i18n/models.ts -------------------------------------------------------------------------------- /src/livecodes/i18n/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/i18n/utils.ts -------------------------------------------------------------------------------- /src/livecodes/import/check-src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/check-src.ts -------------------------------------------------------------------------------- /src/livecodes/import/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/code.ts -------------------------------------------------------------------------------- /src/livecodes/import/codepen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/codepen.ts -------------------------------------------------------------------------------- /src/livecodes/import/dom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/dom.ts -------------------------------------------------------------------------------- /src/livecodes/import/files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/files.ts -------------------------------------------------------------------------------- /src/livecodes/import/github-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/github-dir.ts -------------------------------------------------------------------------------- /src/livecodes/import/github-gist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/github-gist.ts -------------------------------------------------------------------------------- /src/livecodes/import/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/github.ts -------------------------------------------------------------------------------- /src/livecodes/import/gitlab-dir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/gitlab-dir.ts -------------------------------------------------------------------------------- /src/livecodes/import/gitlab-snippet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/gitlab-snippet.ts -------------------------------------------------------------------------------- /src/livecodes/import/gitlab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/gitlab.ts -------------------------------------------------------------------------------- /src/livecodes/import/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/image.ts -------------------------------------------------------------------------------- /src/livecodes/import/import-src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/import-src.ts -------------------------------------------------------------------------------- /src/livecodes/import/import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/import.ts -------------------------------------------------------------------------------- /src/livecodes/import/index.ts: -------------------------------------------------------------------------------- 1 | export * from './import'; 2 | -------------------------------------------------------------------------------- /src/livecodes/import/jsbin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/jsbin.ts -------------------------------------------------------------------------------- /src/livecodes/import/project-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/project-id.ts -------------------------------------------------------------------------------- /src/livecodes/import/url.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/url.ts -------------------------------------------------------------------------------- /src/livecodes/import/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/utils.ts -------------------------------------------------------------------------------- /src/livecodes/import/vue-playground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/vue-playground.ts -------------------------------------------------------------------------------- /src/livecodes/import/zip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/import/zip.ts -------------------------------------------------------------------------------- /src/livecodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/index.ts -------------------------------------------------------------------------------- /src/livecodes/languages/art-template/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-art-template'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/asciidoc/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-asciidoc'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/assemblyscript/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-assemblyscript'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/astro/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-astro'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/babel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-babel'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/bbcode/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-bbcode'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/blockly/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-blockly'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/civet/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-civet'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/clio/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-clio'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/clio/lang-clio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/clio/lang-clio.ts -------------------------------------------------------------------------------- /src/livecodes/languages/clojurescript/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-clojurescript'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/coffeescript/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-coffeescript'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/commonlisp/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-commonlisp'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/cpp-wasm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-cpp-wasm'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/cpp/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-cpp'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/cpp/lang-cpp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/cpp/lang-cpp.ts -------------------------------------------------------------------------------- /src/livecodes/languages/csharp-wasm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-csharp-wasm'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/css-presets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/css-presets.ts -------------------------------------------------------------------------------- /src/livecodes/languages/css/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-css'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/css/lang-css.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/css/lang-css.ts -------------------------------------------------------------------------------- /src/livecodes/languages/diagrams/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-diagrams'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/dot/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-dot'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/dot/lang-dot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/dot/lang-dot.ts -------------------------------------------------------------------------------- /src/livecodes/languages/ejs/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-ejs'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/ejs/lang-ejs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/ejs/lang-ejs.ts -------------------------------------------------------------------------------- /src/livecodes/languages/eta/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-eta'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/eta/lang-eta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/eta/lang-eta.ts -------------------------------------------------------------------------------- /src/livecodes/languages/fennel/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-fennel'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/flow/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-flow'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/flow/lang-flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/flow/lang-flow.ts -------------------------------------------------------------------------------- /src/livecodes/languages/gleam/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-gleam'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/go-wasm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-go-wasm'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/go/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-go'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/go/lang-go.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/go/lang-go.ts -------------------------------------------------------------------------------- /src/livecodes/languages/haml/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-haml'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/haml/lang-haml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/haml/lang-haml.ts -------------------------------------------------------------------------------- /src/livecodes/languages/handlebars/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-handlebars'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/html/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-html'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/html/lang-html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/html/lang-html.ts -------------------------------------------------------------------------------- /src/livecodes/languages/imba/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-imba'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/imba/lang-imba.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/imba/lang-imba.ts -------------------------------------------------------------------------------- /src/livecodes/languages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/index.ts -------------------------------------------------------------------------------- /src/livecodes/languages/java/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-java'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/java/lang-java.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/java/lang-java.ts -------------------------------------------------------------------------------- /src/livecodes/languages/javascript/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-javascript'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/jinja/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-jinja'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/jsx/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/jsx/index.ts -------------------------------------------------------------------------------- /src/livecodes/languages/jsx/lang-jsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/jsx/lang-jsx.ts -------------------------------------------------------------------------------- /src/livecodes/languages/jsx/lang-tsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/jsx/lang-tsx.ts -------------------------------------------------------------------------------- /src/livecodes/languages/julia/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-julia'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/language-info.ts: -------------------------------------------------------------------------------- 1 | export { languageInfo } from '../html'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/languages.ts -------------------------------------------------------------------------------- /src/livecodes/languages/less/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-less'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/less/lang-less.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/less/lang-less.ts -------------------------------------------------------------------------------- /src/livecodes/languages/lightningcss/index.ts: -------------------------------------------------------------------------------- 1 | export * from './processor-lightningcss'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/liquid/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-liquid'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/livescript/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-livescript'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/lua-wasm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-lua-wasm'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/lua/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-lua'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/lua/lang-lua.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/lua/lang-lua.ts -------------------------------------------------------------------------------- /src/livecodes/languages/malina/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-malina'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/markdown/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-markdown'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/mdx/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-mdx'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/mdx/lang-mdx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/mdx/lang-mdx.ts -------------------------------------------------------------------------------- /src/livecodes/languages/mjml/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-mjml'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/mjml/lang-mjml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/mjml/lang-mjml.ts -------------------------------------------------------------------------------- /src/livecodes/languages/mustache/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-mustache'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/nunjucks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-nunjucks'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/ocaml/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-ocaml'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/perl/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-perl'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/perl/lang-perl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/perl/lang-perl.ts -------------------------------------------------------------------------------- /src/livecodes/languages/php-wasm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-php-wasm'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/php/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-php'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/php/lang-php.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/php/lang-php.ts -------------------------------------------------------------------------------- /src/livecodes/languages/postcss/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/postcss/index.ts -------------------------------------------------------------------------------- /src/livecodes/languages/postgresql/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-postgresql'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/prettier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/prettier.ts -------------------------------------------------------------------------------- /src/livecodes/languages/processors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/processors.ts -------------------------------------------------------------------------------- /src/livecodes/languages/prolog/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-prolog'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/pug/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-pug'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/pug/lang-pug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/pug/lang-pug.ts -------------------------------------------------------------------------------- /src/livecodes/languages/python-wasm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-python-wasm'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/python/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-python'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/r/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-r'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/r/lang-r.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/r/lang-r.ts -------------------------------------------------------------------------------- /src/livecodes/languages/react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/react/index.ts -------------------------------------------------------------------------------- /src/livecodes/languages/reason/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-reason'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/rescript/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-rescript'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/richtext/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-richtext'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/riot/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-riot'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/riot/lang-riot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/riot/lang-riot.ts -------------------------------------------------------------------------------- /src/livecodes/languages/ruby-wasm/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-ruby-wasm'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/ruby/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-ruby'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/ruby/lang-ruby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/ruby/lang-ruby.ts -------------------------------------------------------------------------------- /src/livecodes/languages/scheme/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-scheme'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/scss/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/scss/index.ts -------------------------------------------------------------------------------- /src/livecodes/languages/scss/lang-sass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/scss/lang-sass.ts -------------------------------------------------------------------------------- /src/livecodes/languages/scss/lang-scss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/scss/lang-scss.ts -------------------------------------------------------------------------------- /src/livecodes/languages/solid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/solid/index.ts -------------------------------------------------------------------------------- /src/livecodes/languages/sql/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-sql'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/sql/lang-sql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/sql/lang-sql.ts -------------------------------------------------------------------------------- /src/livecodes/languages/stencil/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-stencil'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/stylis/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-stylis'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/stylus/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-stylus'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/sucrase/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-sucrase'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/svelte/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-svelte'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/tailwindcss/index.ts: -------------------------------------------------------------------------------- 1 | export * from './processor-tailwindcss'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/tcl/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-tcl'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/tcl/lang-tcl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/tcl/lang-tcl.ts -------------------------------------------------------------------------------- /src/livecodes/languages/teal/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-teal'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/teal/lang-teal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/teal/lang-teal.ts -------------------------------------------------------------------------------- /src/livecodes/languages/twig/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-twig'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/twig/lang-twig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/twig/lang-twig.ts -------------------------------------------------------------------------------- /src/livecodes/languages/typescript/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-typescript'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/unocss/index.ts: -------------------------------------------------------------------------------- 1 | export * from './processor-unocss'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/utils.ts -------------------------------------------------------------------------------- /src/livecodes/languages/vento/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-vento'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/vue/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-vue'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/vue/lang-vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/vue/lang-vue.ts -------------------------------------------------------------------------------- /src/livecodes/languages/vue2/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-vue2'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/vue2/lang-vue2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/vue2/lang-vue2.ts -------------------------------------------------------------------------------- /src/livecodes/languages/wat/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lang-wat'; 2 | -------------------------------------------------------------------------------- /src/livecodes/languages/wat/lang-wat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/languages/wat/lang-wat.ts -------------------------------------------------------------------------------- /src/livecodes/languages/windicss/index.ts: -------------------------------------------------------------------------------- 1 | export * from './processor-windicss'; 2 | -------------------------------------------------------------------------------- /src/livecodes/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/main.ts -------------------------------------------------------------------------------- /src/livecodes/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/models.ts -------------------------------------------------------------------------------- /src/livecodes/notifications/index.ts: -------------------------------------------------------------------------------- 1 | export * from './create-notifications'; 2 | -------------------------------------------------------------------------------- /src/livecodes/notifications/snackbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/notifications/snackbar.ts -------------------------------------------------------------------------------- /src/livecodes/result/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/result/index.ts -------------------------------------------------------------------------------- /src/livecodes/result/result-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/result/result-page.ts -------------------------------------------------------------------------------- /src/livecodes/result/result-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/result/result-utils.ts -------------------------------------------------------------------------------- /src/livecodes/result/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/result/utils.ts -------------------------------------------------------------------------------- /src/livecodes/services/allowed-origin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/allowed-origin.ts -------------------------------------------------------------------------------- /src/livecodes/services/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/auth.ts -------------------------------------------------------------------------------- /src/livecodes/services/broadcast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/broadcast.ts -------------------------------------------------------------------------------- /src/livecodes/services/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/cors.ts -------------------------------------------------------------------------------- /src/livecodes/services/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/firebase.ts -------------------------------------------------------------------------------- /src/livecodes/services/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/github.ts -------------------------------------------------------------------------------- /src/livecodes/services/google-fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/google-fonts.ts -------------------------------------------------------------------------------- /src/livecodes/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/index.ts -------------------------------------------------------------------------------- /src/livecodes/services/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/modules.ts -------------------------------------------------------------------------------- /src/livecodes/services/pkgInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/pkgInfo.ts -------------------------------------------------------------------------------- /src/livecodes/services/sandbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/sandbox.ts -------------------------------------------------------------------------------- /src/livecodes/services/share.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/share.ts -------------------------------------------------------------------------------- /src/livecodes/services/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/types.ts -------------------------------------------------------------------------------- /src/livecodes/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/services/utils.ts -------------------------------------------------------------------------------- /src/livecodes/storage/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/storage/encrypt.ts -------------------------------------------------------------------------------- /src/livecodes/storage/fake-storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/storage/fake-storage.ts -------------------------------------------------------------------------------- /src/livecodes/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/storage/index.ts -------------------------------------------------------------------------------- /src/livecodes/storage/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/storage/models.ts -------------------------------------------------------------------------------- /src/livecodes/storage/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/storage/storage.ts -------------------------------------------------------------------------------- /src/livecodes/storage/stores.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/storage/stores.ts -------------------------------------------------------------------------------- /src/livecodes/styles/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/styles/app.scss -------------------------------------------------------------------------------- /src/livecodes/styles/inc-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/styles/inc-icons.css -------------------------------------------------------------------------------- /src/livecodes/styles/inc-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/styles/inc-light.scss -------------------------------------------------------------------------------- /src/livecodes/styles/inc-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/styles/inc-menu.scss -------------------------------------------------------------------------------- /src/livecodes/styles/inc-modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/styles/inc-modal.scss -------------------------------------------------------------------------------- /src/livecodes/styles/inc-rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/styles/inc-rtl.scss -------------------------------------------------------------------------------- /src/livecodes/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/styles/index.css -------------------------------------------------------------------------------- /src/livecodes/styles/quill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/styles/quill.css -------------------------------------------------------------------------------- /src/livecodes/sync/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/sync/diff.ts -------------------------------------------------------------------------------- /src/livecodes/sync/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/sync/index.ts -------------------------------------------------------------------------------- /src/livecodes/sync/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/sync/models.ts -------------------------------------------------------------------------------- /src/livecodes/sync/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/sync/sync.ts -------------------------------------------------------------------------------- /src/livecodes/sync/sync.worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/sync/sync.worker.ts -------------------------------------------------------------------------------- /src/livecodes/templates/index.ts: -------------------------------------------------------------------------------- 1 | export * from './get-starter-templates'; 2 | -------------------------------------------------------------------------------- /src/livecodes/toolspane/console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/toolspane/console.ts -------------------------------------------------------------------------------- /src/livecodes/toolspane/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/toolspane/index.ts -------------------------------------------------------------------------------- /src/livecodes/toolspane/test-viewer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/toolspane/test-viewer.ts -------------------------------------------------------------------------------- /src/livecodes/toolspane/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/toolspane/tools.ts -------------------------------------------------------------------------------- /src/livecodes/types/bundle-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/types/bundle-types.ts -------------------------------------------------------------------------------- /src/livecodes/types/default-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/types/default-types.ts -------------------------------------------------------------------------------- /src/livecodes/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/types/index.ts -------------------------------------------------------------------------------- /src/livecodes/types/type-loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/types/type-loader.ts -------------------------------------------------------------------------------- /src/livecodes/utils/compression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/utils/compression.ts -------------------------------------------------------------------------------- /src/livecodes/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/utils/index.ts -------------------------------------------------------------------------------- /src/livecodes/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/utils/utils.ts -------------------------------------------------------------------------------- /src/livecodes/vendors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/livecodes/vendors.ts -------------------------------------------------------------------------------- /src/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/netlify.toml -------------------------------------------------------------------------------- /src/sdk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/sdk/index.ts -------------------------------------------------------------------------------- /src/sdk/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/sdk/models.ts -------------------------------------------------------------------------------- /src/sdk/package.sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/sdk/package.sdk.json -------------------------------------------------------------------------------- /src/sdk/react.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/sdk/react.tsx -------------------------------------------------------------------------------- /src/sdk/vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/src/sdk/vue.ts -------------------------------------------------------------------------------- /storybook/.npmrc: -------------------------------------------------------------------------------- 1 | legacy-peer-deps=true 2 | -------------------------------------------------------------------------------- /storybook/.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/.storybook/main.js -------------------------------------------------------------------------------- /storybook/.storybook/manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/.storybook/manager.js -------------------------------------------------------------------------------- /storybook/.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/.storybook/preview.js -------------------------------------------------------------------------------- /storybook/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/package-lock.json -------------------------------------------------------------------------------- /storybook/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/package.json -------------------------------------------------------------------------------- /storybook/public/livecodes-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/public/livecodes-logo.svg -------------------------------------------------------------------------------- /storybook/src/LiveCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/src/LiveCodes.ts -------------------------------------------------------------------------------- /storybook/src/create-story.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/src/create-story.ts -------------------------------------------------------------------------------- /storybook/src/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/src/deps.ts -------------------------------------------------------------------------------- /storybook/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './LiveCodes'; 2 | -------------------------------------------------------------------------------- /storybook/stories/Basic.stories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/stories/Basic.stories.ts -------------------------------------------------------------------------------- /storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/storybook/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/tsconfig.sdk.json -------------------------------------------------------------------------------- /typos.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/typos.toml -------------------------------------------------------------------------------- /vendor-licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/live-codes/livecodes/HEAD/vendor-licenses.md --------------------------------------------------------------------------------