├── .claude ├── agents │ └── linter-error-fixer.md ├── commands │ └── sanity-check.md └── settings.json ├── .coderabbit.yaml ├── .dockerignore ├── .editorconfig ├── .envrc ├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── build.yml │ ├── cd.yml │ ├── ci.yml │ ├── claude-code-review.yml │ ├── claude.yml │ ├── deployment.yml │ ├── production.yml │ ├── sharp-al2023.yml │ └── sharp-debian.yml ├── .gitignore ├── .gitmodules ├── .prettierignore ├── .sops.yaml ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── CLAUDE.md ├── Cargo.lock ├── Cargo.toml ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README ├── apps ├── api │ ├── Dockerfile │ ├── drizzle.config.ts │ ├── drizzle │ │ ├── 0000_brave_tempest.sql │ │ ├── 0001_dizzy_mathemanic.sql │ │ ├── 0002_glossy_jimmy_woo.sql │ │ ├── 0003_goofy_puma.sql │ │ ├── 0004_cooing_karen_page.sql │ │ ├── 0005_zippy_firebird.sql │ │ ├── 0006_volatile_richard_fisk.sql │ │ ├── 0007_opposite_lake.sql │ │ ├── 0008_warm_wild_child.sql │ │ ├── 0009_tan_mole_man.sql │ │ ├── 0010_wooden_rage.sql │ │ ├── 0011_lovely_darwin.sql │ │ ├── 0012_purple_sharon_carter.sql │ │ ├── 0013_majestic_morlocks.sql │ │ ├── 0014_unique_toro.sql │ │ ├── 0015_warm_clint_barton.sql │ │ ├── 0016_bumpy_slapstick.sql │ │ ├── 0017_little_titanium_man.sql │ │ ├── 0018_pale_albert_cleary.sql │ │ ├── 0019_broad_hardball.sql │ │ ├── 0020_bizarre_jean_grey.sql │ │ ├── 0021_pretty_captain_universe.sql │ │ ├── 0022_smart_ogun.sql │ │ ├── 0023_sleepy_marten_broadcloak.sql │ │ ├── 0024_last_ma_gnuci.sql │ │ ├── 0025_kind_doctor_octopus.sql │ │ ├── 0026_great_jimmy_woo.sql │ │ ├── 0027_classy_wildside.sql │ │ ├── 0028_neat_prowler.sql │ │ ├── 0029_lyrical_korg.sql │ │ ├── 0030_dusty_kree.sql │ │ ├── 0031_fat_dexter_bennett.sql │ │ ├── 0032_tiresome_clea.sql │ │ ├── 0033_sleepy_silvermane.sql │ │ ├── 0034_parallel_sunspot.sql │ │ ├── 0035_stale_black_crow.sql │ │ ├── 0036_same_mister_fear.sql │ │ └── meta │ │ │ ├── 0000_snapshot.json │ │ │ ├── 0001_snapshot.json │ │ │ ├── 0002_snapshot.json │ │ │ ├── 0003_snapshot.json │ │ │ ├── 0004_snapshot.json │ │ │ ├── 0005_snapshot.json │ │ │ ├── 0006_snapshot.json │ │ │ ├── 0007_snapshot.json │ │ │ ├── 0008_snapshot.json │ │ │ ├── 0009_snapshot.json │ │ │ ├── 0010_snapshot.json │ │ │ ├── 0011_snapshot.json │ │ │ ├── 0012_snapshot.json │ │ │ ├── 0013_snapshot.json │ │ │ ├── 0014_snapshot.json │ │ │ ├── 0015_snapshot.json │ │ │ ├── 0016_snapshot.json │ │ │ ├── 0017_snapshot.json │ │ │ ├── 0018_snapshot.json │ │ │ ├── 0019_snapshot.json │ │ │ ├── 0020_snapshot.json │ │ │ ├── 0021_snapshot.json │ │ │ ├── 0022_snapshot.json │ │ │ ├── 0023_snapshot.json │ │ │ ├── 0024_snapshot.json │ │ │ ├── 0025_snapshot.json │ │ │ ├── 0026_snapshot.json │ │ │ ├── 0027_snapshot.json │ │ │ ├── 0028_snapshot.json │ │ │ ├── 0029_snapshot.json │ │ │ ├── 0030_snapshot.json │ │ │ ├── 0031_snapshot.json │ │ │ ├── 0032_snapshot.json │ │ │ ├── 0033_snapshot.json │ │ │ ├── 0034_snapshot.json │ │ │ ├── 0035_snapshot.json │ │ │ ├── 0036_snapshot.json │ │ │ └── _journal.json │ ├── package.json │ ├── schema.graphql │ ├── scripts │ │ ├── compact-snapshots.ts │ │ ├── create-meilisearch-index.ts │ │ ├── generate-jwk.ts │ │ ├── preorder-mail.ts │ │ ├── resend-preorder-mail.ts │ │ ├── seed.sql │ │ ├── seed.ts │ │ └── update-meilisearch-index.ts │ ├── src │ │ ├── app.ts │ │ ├── cache.ts │ │ ├── const.ts │ │ ├── context.ts │ │ ├── db │ │ │ ├── index.ts │ │ │ ├── logger.ts │ │ │ ├── schemas │ │ │ │ ├── codes.ts │ │ │ │ ├── enums.ts │ │ │ │ ├── id.ts │ │ │ │ ├── json.ts │ │ │ │ ├── tables.ts │ │ │ │ └── types.ts │ │ │ └── utils.ts │ │ ├── email │ │ │ ├── index.ts │ │ │ └── templates │ │ │ │ ├── EmailUpdateEmail.tsx │ │ │ │ ├── EmailUpdatedEmail.tsx │ │ │ │ ├── PasswordResetEmail.tsx │ │ │ │ ├── PreorderCodeEmail.tsx │ │ │ │ ├── PreorderCompletedEmail.tsx │ │ │ │ ├── SignUpEmail.tsx │ │ │ │ ├── SubscriptionExpiredEmail.tsx │ │ │ │ ├── SubscriptionExpiringEmail.tsx │ │ │ │ ├── SubscriptionGracePeriodEmail.tsx │ │ │ │ ├── components │ │ │ │ ├── TypieEmail.tsx │ │ │ │ └── TypieLinkEmail.tsx │ │ │ │ └── index.ts │ │ ├── enums.ts │ │ ├── env.ts │ │ ├── errors.ts │ │ ├── export │ │ │ ├── docx │ │ │ │ ├── docx.ts │ │ │ │ ├── marks │ │ │ │ │ └── ruby.ts │ │ │ │ ├── nodes │ │ │ │ │ ├── blockquote.ts │ │ │ │ │ ├── callout.ts │ │ │ │ │ ├── code.ts │ │ │ │ │ ├── embed.ts │ │ │ │ │ ├── file.ts │ │ │ │ │ ├── fold.ts │ │ │ │ │ ├── hard-break.ts │ │ │ │ │ ├── horizontal-rule.ts │ │ │ │ │ ├── html.ts │ │ │ │ │ ├── image.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── list.ts │ │ │ │ │ ├── paragraph.ts │ │ │ │ │ └── table.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ │ ├── color.ts │ │ │ │ │ ├── font-mapping.ts │ │ │ │ │ ├── marks.ts │ │ │ │ │ ├── text-run.ts │ │ │ │ │ ├── unit.ts │ │ │ │ │ └── utils.ts │ │ │ └── pdf.ts │ │ ├── external │ │ │ ├── appstore.ts │ │ │ ├── aws.ts │ │ │ ├── firebase.ts │ │ │ ├── googleplay.ts │ │ │ ├── iframely.ts │ │ │ ├── portone.ts │ │ │ ├── slack.ts │ │ │ ├── spellcheck.ts │ │ │ └── sso │ │ │ │ ├── apple.ts │ │ │ │ ├── google.ts │ │ │ │ ├── index.ts │ │ │ │ ├── kakao.ts │ │ │ │ ├── naver.ts │ │ │ │ └── types.ts │ │ ├── graphql │ │ │ ├── builder.ts │ │ │ ├── enums.ts │ │ │ ├── index.ts │ │ │ ├── objects.ts │ │ │ ├── plugins │ │ │ │ ├── error.ts │ │ │ │ └── logger.ts │ │ │ ├── resolvers │ │ │ │ ├── admin.ts │ │ │ │ ├── auth.ts │ │ │ │ ├── blob.ts │ │ │ │ ├── canvas.ts │ │ │ │ ├── entity.ts │ │ │ │ ├── export.ts │ │ │ │ ├── folder.ts │ │ │ │ ├── font.ts │ │ │ │ ├── internal.ts │ │ │ │ ├── note.ts │ │ │ │ ├── payment.ts │ │ │ │ ├── post.ts │ │ │ │ ├── search.ts │ │ │ │ ├── site.ts │ │ │ │ ├── stats.ts │ │ │ │ ├── unfurl.ts │ │ │ │ ├── user.ts │ │ │ │ └── widget.ts │ │ │ └── schema.ts │ │ ├── instrumentation.ts │ │ ├── lock.ts │ │ ├── main.ts │ │ ├── mq │ │ │ ├── bullmq.ts │ │ │ ├── index.ts │ │ │ ├── metrics.ts │ │ │ ├── tasks │ │ │ │ ├── bmo.ts │ │ │ │ ├── canvas.ts │ │ │ │ ├── email.ts │ │ │ │ ├── index.ts │ │ │ │ ├── post.ts │ │ │ │ ├── subscription.ts │ │ │ │ └── test.ts │ │ │ └── types.ts │ │ ├── pm │ │ │ ├── index.ts │ │ │ ├── schema.json │ │ │ └── serializer.ts │ │ ├── pubsub.ts │ │ ├── rest │ │ │ ├── auth.ts │ │ │ ├── bmo.ts │ │ │ ├── healthz.ts │ │ │ ├── iap.ts │ │ │ ├── index.ts │ │ │ └── og.tsx │ │ ├── search.ts │ │ ├── utils │ │ │ ├── auth.ts │ │ │ ├── chart-generation.tsx │ │ │ ├── compression.ts │ │ │ ├── date.ts │ │ │ ├── entity.ts │ │ │ ├── image-generation.tsx │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ ├── order.ts │ │ │ ├── payment.ts │ │ │ ├── pdf.ts │ │ │ ├── permission.ts │ │ │ ├── plan.ts │ │ │ ├── promise.ts │ │ │ ├── site.ts │ │ │ ├── text.ts │ │ │ ├── user-contents.ts │ │ │ └── user.ts │ │ └── validation.ts │ └── tsconfig.json ├── caddy │ ├── Caddyfile │ └── package.json ├── desktop │ ├── .env │ ├── .gitignore │ ├── package.json │ ├── panda.config.js │ ├── postcss.config.js │ ├── schema.graphql │ ├── src-tauri │ │ ├── Cargo.toml │ │ ├── Tauri.toml │ │ ├── assets │ │ │ └── dmg-background.png │ │ ├── build.rs │ │ ├── capabilities │ │ │ └── default.json │ │ ├── icons │ │ │ ├── icon.icns │ │ │ ├── icon.ico │ │ │ └── icon.png │ │ ├── resources │ │ │ └── ko.lproj │ │ │ │ └── InfoPlist.strings │ │ └── src │ │ │ ├── lib.rs │ │ │ └── main.rs │ ├── src │ │ ├── ambient.d.ts │ │ ├── app.css │ │ ├── app.d.ts │ │ ├── app.html │ │ ├── assets │ │ │ └── logos │ │ │ │ ├── favicon-dark.svg │ │ │ │ ├── favicon-light.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── wordmark-black.svg │ │ │ │ └── wordmark-white.svg │ │ ├── hooks │ │ │ └── client.ts │ │ ├── icons │ │ │ ├── bell-filled.svg │ │ │ ├── bookmark-filled.svg │ │ │ ├── circle-user-round-filled.svg │ │ │ ├── exclamation.svg │ │ │ ├── folder-filled.svg │ │ │ ├── folder-open-filled.svg │ │ │ ├── google.svg │ │ │ ├── horizontal-rule.svg │ │ │ ├── inbox-filled.svg │ │ │ ├── kakao.svg │ │ │ ├── letter-spacing.svg │ │ │ ├── line-height.svg │ │ │ ├── ruby.svg │ │ │ └── search-filled.svg │ │ ├── lib │ │ │ ├── components │ │ │ │ ├── Img.svelte │ │ │ │ ├── LoadableImg.svelte │ │ │ │ └── index.ts │ │ │ ├── graphql │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── store.ts │ │ │ └── utils │ │ │ │ ├── blob.svelte │ │ │ │ ├── embed.svelte │ │ │ │ ├── index.ts │ │ │ │ └── yjs-post.ts │ │ └── routes │ │ │ ├── (app) │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ ├── @pages │ │ │ │ ├── @context-menu │ │ │ │ │ ├── CanvasMenu.svelte │ │ │ │ │ ├── FolderMenu.svelte │ │ │ │ │ ├── PdfExportModal.svelte │ │ │ │ │ └── PostMenu.svelte │ │ │ │ ├── @tree │ │ │ │ │ └── utils.ts │ │ │ │ ├── Counter.svelte │ │ │ │ ├── Home.svelte │ │ │ │ ├── PlanUpgradeModal.svelte │ │ │ │ └── editor │ │ │ │ │ ├── @anchor │ │ │ │ │ ├── Anchor.svelte │ │ │ │ │ └── Anchors.svelte │ │ │ │ │ ├── @canvas │ │ │ │ │ ├── Canvas.svelte │ │ │ │ │ ├── Panel.svelte │ │ │ │ │ ├── PanelButton.svelte │ │ │ │ │ ├── Toolbar.svelte │ │ │ │ │ ├── ToolbarButton.svelte │ │ │ │ │ └── Zoom.svelte │ │ │ │ │ ├── Cover.svelte │ │ │ │ │ ├── Editor.svelte │ │ │ │ │ ├── Highlight.svelte │ │ │ │ │ ├── Limit.svelte │ │ │ │ │ ├── Page.svelte │ │ │ │ │ ├── Panel.svelte │ │ │ │ │ ├── PanelCharacterCountChangeWidget.svelte │ │ │ │ │ ├── PanelCharacterCountWidget.svelte │ │ │ │ │ ├── PanelNote.svelte │ │ │ │ │ ├── Placeholder.svelte │ │ │ │ │ ├── Post.svelte │ │ │ │ │ ├── Spellcheck.svelte │ │ │ │ │ ├── Timeline.svelte │ │ │ │ │ ├── Timer.svelte │ │ │ │ │ ├── Toolbar.svelte │ │ │ │ │ ├── ToolbarButton.svelte │ │ │ │ │ ├── ToolbarDropdownButton.svelte │ │ │ │ │ ├── ToolbarDropdownMenu.svelte │ │ │ │ │ ├── ToolbarDropdownMenuItem.svelte │ │ │ │ │ ├── ToolbarFloatingFindReplace.svelte │ │ │ │ │ ├── ToolbarFloatingLink.svelte │ │ │ │ │ ├── ToolbarFloatingRuby.svelte │ │ │ │ │ ├── ToolbarFontFamily.svelte │ │ │ │ │ ├── ToolbarIcon.svelte │ │ │ │ │ ├── ToolbarSettings.svelte │ │ │ │ │ └── state.svelte.ts │ │ │ ├── Sidebar.svelte │ │ │ ├── TabBar.svelte │ │ │ └── tabs.svelte.ts │ │ │ ├── +layout.svelte │ │ │ ├── +layout.ts │ │ │ └── auth │ │ │ ├── +layout.svelte │ │ │ ├── callback │ │ │ └── +page.svelte │ │ │ └── login │ │ │ └── +page.svelte │ ├── static │ │ └── .gitkeep │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts ├── literoom │ ├── package.json │ ├── scripts │ │ ├── build-layers.ts │ │ └── package-function.ts │ ├── src │ │ └── handler.ts │ ├── tsconfig.json │ └── tsup.config.ts ├── mobile │ ├── .env │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle.kts │ │ │ ├── google-services.json │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── co │ │ │ │ │ │ └── typie │ │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ │ ├── MainApplication.kt │ │ │ │ │ │ ├── keyboard │ │ │ │ │ │ └── KeyboardPlugin.kt │ │ │ │ │ │ └── webview │ │ │ │ │ │ ├── AppWebView.kt │ │ │ │ │ │ └── AppWebViewFactory.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-night │ │ │ │ │ └── ic_splash_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ ├── ic_launcher_foreground.xml │ │ │ │ │ ├── ic_notification_foreground.xml │ │ │ │ │ └── ic_splash_foreground.xml │ │ │ │ │ ├── mipmap │ │ │ │ │ └── ic_launcher.xml │ │ │ │ │ ├── values-night │ │ │ │ │ └── colors.xml │ │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── keep.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle.kts │ │ ├── fastlane │ │ │ ├── Appfile │ │ │ └── Fastfile │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ ├── keystore-debug.jks │ │ └── settings.gradle.kts │ ├── assets │ │ ├── brands │ │ │ ├── apple.svg │ │ │ ├── google.svg │ │ │ ├── kakao.svg │ │ │ └── naver.svg │ │ ├── fonts │ │ │ ├── Interop-Bold.otf │ │ │ ├── Interop-Medium.otf │ │ │ ├── Interop-Regular.otf │ │ │ ├── Interop-SemiBold.otf │ │ │ ├── LucideLabIcons.ttf │ │ │ ├── LucideLightIcons.ttf │ │ │ └── TypieIcons.ttf │ │ ├── icons │ │ │ ├── chevrons-down-up.svg │ │ │ ├── code-xml.svg │ │ │ ├── code.svg │ │ │ ├── file-up.svg │ │ │ ├── gallery-vertical-end.svg │ │ │ ├── horizontal-rule.svg │ │ │ ├── image.svg │ │ │ ├── left-quote.svg │ │ │ ├── list.svg │ │ │ ├── paperclip.svg │ │ │ ├── quote.svg │ │ │ ├── table.svg │ │ │ └── zigzag.svg │ │ └── logos │ │ │ └── full.svg │ ├── build.yaml │ ├── firebase.json │ ├── ios │ │ ├── .gitignore │ │ ├── ExportOptions.AppStore.plist │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── AppIcon.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── SplashIcon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── SplashIcon.svg │ │ │ │ │ └── SplashIconDark.svg │ │ │ ├── Configuration.storekit │ │ │ ├── GoogleService-Info.plist │ │ │ ├── Info.plist │ │ │ ├── InfoPlist.xcstrings │ │ │ ├── Keyboard │ │ │ │ └── KeyboardPlugin.swift │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── Main.storyboard │ │ │ ├── Runner-Bridging-Header.h │ │ │ ├── Runner.entitlements │ │ │ └── WebView │ │ │ │ ├── AppWKWebView.swift │ │ │ │ ├── AppWebView.swift │ │ │ │ └── AppWebViewFactory.swift │ │ ├── RunnerTests │ │ │ └── RunnerTests.swift │ │ └── fastlane │ │ │ ├── Appfile │ │ │ ├── Fastfile │ │ │ └── Matchfile │ ├── lib │ │ ├── app.dart │ │ ├── constants │ │ │ ├── plan_features.dart │ │ │ └── router_tab_index.dart │ │ ├── context │ │ │ ├── bottom_sheet.dart │ │ │ ├── loader.dart │ │ │ ├── modal.dart │ │ │ ├── theme.dart │ │ │ └── toast.dart │ │ ├── env.dart │ │ ├── error.dart │ │ ├── extensions │ │ │ ├── iterable.dart │ │ │ ├── jiffy.dart │ │ │ └── num.dart │ │ ├── firebase_options.dart │ │ ├── graphql │ │ │ ├── auth_link.dart │ │ │ ├── client.dart │ │ │ ├── cookie_link.dart │ │ │ ├── create_ws_session_mutation.graphql │ │ │ ├── error.dart │ │ │ ├── message.dart │ │ │ ├── schema.graphql │ │ │ ├── serializer.dart │ │ │ ├── widget.dart │ │ │ └── ws_link.dart │ │ ├── hooks │ │ │ ├── async_effect.dart │ │ │ ├── debounce.dart │ │ │ ├── editor_floating_fade.dart │ │ │ ├── route_resumed.dart │ │ │ └── service.dart │ │ ├── icons │ │ │ ├── lucide_lab.dart │ │ │ ├── lucide_light.dart │ │ │ └── typie.dart │ │ ├── instrument.dart │ │ ├── logger.dart │ │ ├── main.dart │ │ ├── modals │ │ │ ├── share.dart │ │ │ ├── share_entities_query.graphql │ │ │ ├── share_folder_query.graphql │ │ │ ├── share_post_query.graphql │ │ │ ├── update_folders_option_mutation.graphql │ │ │ └── update_posts_option_mutation.graphql │ │ ├── permission.dart │ │ ├── providers │ │ │ ├── in_app_purchase.dart │ │ │ ├── push_notification.dart │ │ │ ├── register_push_notification_token_mutation.graphql │ │ │ └── subscribe_or_change_plan_with_in_app_purchase_mutation.graphql │ │ ├── routers │ │ │ ├── app.dart │ │ │ ├── guard.dart │ │ │ ├── observer.dart │ │ │ └── shells.dart │ │ ├── screens │ │ │ ├── cancel_plan │ │ │ │ ├── cancel_plan_query.graphql │ │ │ │ └── screen.dart │ │ │ ├── canvas │ │ │ │ ├── canvas_query.graphql │ │ │ │ ├── canvas_viewer.dart │ │ │ │ ├── delete_canvas_mutation.graphql │ │ │ │ ├── scope.dart │ │ │ │ └── screen.dart │ │ │ ├── current_plan │ │ │ │ ├── current_plan_query.graphql │ │ │ │ └── screen.dart │ │ │ ├── delete_user │ │ │ │ ├── delete_user_mutation.graphql │ │ │ │ └── screen.dart │ │ │ ├── editor │ │ │ │ ├── anchor.dart │ │ │ │ ├── body_setting_bottom_sheet.dart │ │ │ │ ├── create_note_mutation.graphql │ │ │ │ ├── delete_note_mutation.graphql │ │ │ │ ├── delete_post_mutation.graphql │ │ │ │ ├── duplicate_post_mutation.graphql │ │ │ │ ├── editor.dart │ │ │ │ ├── editor_query.graphql │ │ │ │ ├── find_replace.dart │ │ │ │ ├── floating │ │ │ │ │ ├── editor_floating_widget.dart │ │ │ │ │ └── widgets │ │ │ │ │ │ └── character_count_floating.dart │ │ │ │ ├── limit.dart │ │ │ │ ├── move_note_mutation.graphql │ │ │ │ ├── note.dart │ │ │ │ ├── page_layout.dart │ │ │ │ ├── paste_option_bottom_sheet.dart │ │ │ │ ├── persist_blob_as_file.graphql │ │ │ │ ├── persist_blob_as_image.graphql │ │ │ │ ├── post_related_notes_query.graphql │ │ │ │ ├── schema.dart │ │ │ │ ├── scope.dart │ │ │ │ ├── screen.dart │ │ │ │ ├── spellcheck.dart │ │ │ │ ├── toolbar │ │ │ │ │ ├── bottom │ │ │ │ │ │ ├── blockquote.dart │ │ │ │ │ │ ├── bottom.dart │ │ │ │ │ │ ├── horizontal_rule.dart │ │ │ │ │ │ └── insert.dart │ │ │ │ │ ├── buttons │ │ │ │ │ │ ├── background_color.dart │ │ │ │ │ │ ├── base.dart │ │ │ │ │ │ ├── color.dart │ │ │ │ │ │ ├── floating.dart │ │ │ │ │ │ ├── icon.dart │ │ │ │ │ │ ├── label.dart │ │ │ │ │ │ └── widget.dart │ │ │ │ │ ├── floating │ │ │ │ │ │ ├── blockquote.dart │ │ │ │ │ │ ├── callout.dart │ │ │ │ │ │ ├── code.dart │ │ │ │ │ │ ├── embed.dart │ │ │ │ │ │ ├── file.dart │ │ │ │ │ │ ├── floating.dart │ │ │ │ │ │ ├── fold.dart │ │ │ │ │ │ ├── horizontal_rule.dart │ │ │ │ │ │ ├── html.dart │ │ │ │ │ │ ├── image.dart │ │ │ │ │ │ ├── list.dart │ │ │ │ │ │ └── table.dart │ │ │ │ │ ├── primary │ │ │ │ │ │ └── primary.dart │ │ │ │ │ ├── secondary │ │ │ │ │ │ ├── secondary.dart │ │ │ │ │ │ ├── text.dart │ │ │ │ │ │ └── text_options │ │ │ │ │ │ │ ├── base.dart │ │ │ │ │ │ │ ├── font_family.dart │ │ │ │ │ │ │ ├── font_size.dart │ │ │ │ │ │ │ ├── font_weight.dart │ │ │ │ │ │ │ ├── letter_spacing.dart │ │ │ │ │ │ │ ├── line_height.dart │ │ │ │ │ │ │ ├── text_align.dart │ │ │ │ │ │ │ ├── text_background_color.dart │ │ │ │ │ │ │ └── text_color.dart │ │ │ │ │ └── toolbar.dart │ │ │ │ ├── unfurl_embed.graphql │ │ │ │ ├── update_note_mutation.graphql │ │ │ │ ├── update_post_type_mutation.graphql │ │ │ │ └── values.dart │ │ │ ├── editor_settings │ │ │ │ └── screen.dart │ │ │ ├── enroll_plan │ │ │ │ ├── screen.dart │ │ │ │ ├── screen_query.graphql │ │ │ │ └── subscribe_or_change_plan_with_in_app_purchase_mutation.graphql │ │ │ ├── entity │ │ │ │ ├── create_folder_mutation.graphql │ │ │ │ ├── create_post_mutation.graphql │ │ │ │ ├── delete_canvas_mutation.graphql │ │ │ │ ├── delete_entities_mutation.graphql │ │ │ │ ├── delete_folder_mutation.graphql │ │ │ │ ├── delete_post_mutation.graphql │ │ │ │ ├── duplicate_post_mutation.graphql │ │ │ │ ├── entity_fragment.graphql │ │ │ │ ├── move_entities_mutation.graphql │ │ │ │ ├── move_entity_modal.dart │ │ │ │ ├── move_entity_mutation.graphql │ │ │ │ ├── multi_entities_menu.dart │ │ │ │ ├── rename_folder_mutation.graphql │ │ │ │ ├── screen.dart │ │ │ │ ├── screen_with_entity_id_query.graphql │ │ │ │ ├── screen_with_site_id_query.graphql │ │ │ │ └── selected_entities_bar.dart │ │ │ ├── home │ │ │ │ ├── create_post.graphql │ │ │ │ ├── screen.dart │ │ │ │ └── site_update_stream.graphql │ │ │ ├── login │ │ │ │ ├── authorize_single_sign_on_mutation.graphql │ │ │ │ └── screen.dart │ │ │ ├── login_with_email │ │ │ │ ├── login_with_email_mutation.graphql │ │ │ │ └── screen.dart │ │ │ ├── notes │ │ │ │ ├── notes_create_note_mutation.graphql │ │ │ │ ├── notes_delete_note_mutation.graphql │ │ │ │ ├── notes_move_note_mutation.graphql │ │ │ │ ├── notes_query.graphql │ │ │ │ ├── notes_update_note_mutation.graphql │ │ │ │ └── screen.dart │ │ │ ├── offline │ │ │ │ └── screen.dart │ │ │ ├── oss_licenses │ │ │ │ └── screen.dart │ │ │ ├── profile │ │ │ │ ├── activity_grid.dart │ │ │ │ ├── profile_query.graphql │ │ │ │ └── screen.dart │ │ │ ├── referral │ │ │ │ ├── referral_mutation.graphql │ │ │ │ ├── referral_query.graphql │ │ │ │ └── screen.dart │ │ │ ├── search │ │ │ │ ├── recently_viewed_query.graphql │ │ │ │ ├── screen.dart │ │ │ │ └── search_query.graphql │ │ │ ├── settings │ │ │ │ ├── screen.dart │ │ │ │ ├── screen_query.graphql │ │ │ │ └── update_marketing_consent_mutation.graphql │ │ │ ├── social_accounts │ │ │ │ ├── screen.dart │ │ │ │ └── screen_query.graphql │ │ │ ├── trash │ │ │ │ ├── entity_fragment.graphql │ │ │ │ ├── purge_entities_mutation.graphql │ │ │ │ ├── recover_entity_mutation.graphql │ │ │ │ ├── screen.dart │ │ │ │ ├── screen_with_entity_id_query.graphql │ │ │ │ └── screen_with_site_id_query.graphql │ │ │ ├── update_email │ │ │ │ ├── screen.dart │ │ │ │ ├── screen_query.graphql │ │ │ │ └── send_email_update_email_mutation.graphql │ │ │ ├── update_password │ │ │ │ ├── screen.dart │ │ │ │ ├── screen_query.graphql │ │ │ │ └── update_password_mutation.graphql │ │ │ ├── update_profile │ │ │ │ ├── persist_blob_as_image_mutation.graphql │ │ │ │ ├── screen.dart │ │ │ │ ├── screen_query.graphql │ │ │ │ └── update_user_mutation.graphql │ │ │ └── update_site_slug │ │ │ │ ├── screen.dart │ │ │ │ ├── screen_query.graphql │ │ │ │ └── update_site_slug_mutation.graphql │ │ ├── service.dart │ │ ├── services │ │ │ ├── auth.dart │ │ │ ├── auth_query.graphql │ │ │ ├── blob.dart │ │ │ ├── issue_blob_upload_url_mutation.graphql │ │ │ ├── keyboard.dart │ │ │ ├── kv.dart │ │ │ ├── module.dart │ │ │ ├── preference.dart │ │ │ ├── state.dart │ │ │ ├── static.dart │ │ │ └── theme.dart │ │ ├── styles │ │ │ ├── colors.dart │ │ │ ├── semantic_colors.dart │ │ │ └── theme_data.dart │ │ └── widgets │ │ │ ├── animated_indexed_switcher.dart │ │ │ ├── forms │ │ │ ├── field.dart │ │ │ ├── form.dart │ │ │ ├── select.dart │ │ │ ├── slider.dart │ │ │ ├── switch.dart │ │ │ └── text_field.dart │ │ │ ├── heading.dart │ │ │ ├── horizontal_divider.dart │ │ │ ├── note.dart │ │ │ ├── responsive_container.dart │ │ │ ├── screen.dart │ │ │ ├── svg_image.dart │ │ │ ├── tappable.dart │ │ │ ├── vertical_divider.dart │ │ │ └── webview.dart │ ├── package.json │ ├── pubspec.lock │ ├── pubspec.yaml │ └── scripts │ │ └── generate-icons.js └── website │ ├── .env │ ├── Dockerfile │ ├── package.json │ ├── panda.config.js │ ├── postcss.config.js │ ├── schema.graphql │ ├── src │ ├── ambient.d.ts │ ├── app.css │ ├── app.d.ts │ ├── app.html │ ├── assets │ │ ├── graphics │ │ │ ├── age-restriction.svg │ │ │ ├── blocks.svg │ │ │ ├── bubble-menu.svg │ │ │ ├── circle.svg │ │ │ ├── decoration1.svg │ │ │ ├── decoration2.svg │ │ │ ├── editor.svg │ │ │ ├── glitters.svg │ │ │ ├── line.svg │ │ │ ├── paper-airplane.svg │ │ │ ├── private-post.svg │ │ │ ├── share-link.svg │ │ │ ├── spell-check.svg │ │ │ ├── synonym-suggestion.svg │ │ │ ├── timer.svg │ │ │ ├── tracker.png │ │ │ └── underline.svg │ │ ├── icons │ │ │ └── star.svg │ │ └── logos │ │ │ ├── favicon-dark.svg │ │ │ ├── favicon-light.svg │ │ │ ├── logo.svg │ │ │ ├── wordmark-black.svg │ │ │ └── wordmark-white.svg │ ├── global.d.ts │ ├── hooks.client.ts │ ├── hooks.server.ts │ ├── hooks.ts │ ├── icons │ │ ├── bell-filled.svg │ │ ├── bookmark-filled.svg │ │ ├── circle-user-round-filled.svg │ │ ├── exclamation.svg │ │ ├── folder-filled.svg │ │ ├── folder-open-filled.svg │ │ ├── google.svg │ │ ├── horizontal-rule.svg │ │ ├── inbox-filled.svg │ │ ├── kakao.svg │ │ ├── letter-spacing.svg │ │ ├── line-height.svg │ │ ├── ruby.svg │ │ ├── search-filled.svg │ │ └── sticky-note-filled.svg │ ├── lib │ │ ├── analytics.ts │ │ ├── components │ │ │ ├── Img.svelte │ │ │ ├── LoadableImg.svelte │ │ │ ├── SettingsCard.svelte │ │ │ ├── SettingsDivider.svelte │ │ │ ├── SettingsRow.svelte │ │ │ ├── admin │ │ │ │ ├── AdminIcon.svelte │ │ │ │ ├── AdminImpersonateBanner.svelte │ │ │ │ ├── AdminModal.svelte │ │ │ │ ├── AdminPagination.svelte │ │ │ │ ├── AdminTable.svelte │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── graphql │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── polyfills │ │ │ ├── arraybuffer-base64.ts │ │ │ └── index.ts │ │ └── utils │ │ │ ├── blob.svelte │ │ │ ├── embed.svelte │ │ │ ├── index.ts │ │ │ └── yjs-post.ts │ └── routes │ │ ├── +error.svelte │ │ ├── +layout.svelte │ │ ├── auth │ │ ├── (index) │ │ │ └── +server.ts │ │ ├── +layout.svelte │ │ ├── [...rest] │ │ │ └── +server.ts │ │ ├── desktop │ │ │ └── +page.svelte │ │ ├── email │ │ │ └── +page.svelte │ │ ├── forgot-password │ │ │ └── +page.svelte │ │ ├── login │ │ │ └── +page.svelte │ │ ├── reset-password │ │ │ └── +page.svelte │ │ ├── signup │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ ├── sitemap.xml │ │ │ └── +server.ts │ │ ├── sso │ │ │ └── [provider] │ │ │ │ └── +page.svelte │ │ └── update-email │ │ │ └── +page.svelte │ │ ├── graphql │ │ └── +server.ts │ │ ├── robots.txt │ │ └── +server.ts │ │ ├── usersite │ │ ├── apex │ │ │ ├── (index) │ │ │ │ └── +server.ts │ │ │ ├── [permalink] │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ │ ├── r │ │ │ │ └── [code] │ │ │ │ │ └── +server.ts │ │ │ └── sitemap.xml │ │ │ │ └── +server.ts │ │ └── wildcard │ │ │ ├── (index) │ │ │ └── +server.ts │ │ │ ├── +layout.svelte │ │ │ ├── +layout.ts │ │ │ ├── [slug] │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ ├── Emoji.svelte │ │ │ ├── EmojiReaction.svelte │ │ │ ├── FolderView.svelte │ │ │ ├── PostActionMenu.svelte │ │ │ ├── PostView.svelte │ │ │ ├── PostViewBodyUnavailable.svelte │ │ │ ├── ShareLinkPopover.svelte │ │ │ └── emoji.ts │ │ │ ├── authorize │ │ │ └── +server.ts │ │ │ ├── identity │ │ │ └── +page.svelte │ │ │ └── sitemap.xml │ │ │ └── +server.ts │ │ └── website │ │ ├── (dashboard) │ │ ├── +layout.svelte │ │ ├── +layout.ts │ │ ├── @context-menu │ │ │ ├── CanvasMenu.svelte │ │ │ ├── FolderMenu.svelte │ │ │ ├── PdfExportModal.svelte │ │ │ └── PostMenu.svelte │ │ ├── @notes │ │ │ ├── Masonry.svelte │ │ │ ├── Note.svelte │ │ │ └── Notes.svelte │ │ ├── @preference │ │ │ ├── BillingTab.svelte │ │ │ ├── EditorTab.svelte │ │ │ ├── FontTab.svelte │ │ │ ├── InterfaceTab.svelte │ │ │ ├── LaboratoryTab.svelte │ │ │ ├── PlanTab.svelte │ │ │ ├── PreferenceModal.svelte │ │ │ ├── PresetTab.svelte │ │ │ ├── ProfileTab.svelte │ │ │ ├── RedeemCreditCodeModal.svelte │ │ │ ├── ReferralTab.svelte │ │ │ ├── SecurityTab.svelte │ │ │ ├── ShortcutsTab.svelte │ │ │ ├── SubscriptionCancellationSurveyModal.svelte │ │ │ ├── UpdateEmailModal.svelte │ │ │ ├── UpdatePasswordModal.svelte │ │ │ └── UpdatePaymentMethodModal.svelte │ │ ├── @share │ │ │ ├── Folder.svelte │ │ │ ├── Post.svelte │ │ │ └── ShareModal.svelte │ │ ├── @stats │ │ │ ├── ActivityChart.svelte │ │ │ ├── ActivityGrid.svelte │ │ │ └── StatsModal.svelte │ │ ├── @trash │ │ │ ├── TrashCanvas.svelte │ │ │ ├── TrashEntity.svelte │ │ │ ├── TrashFolder.svelte │ │ │ ├── TrashModal.svelte │ │ │ ├── TrashPost.svelte │ │ │ └── TrashTree.svelte │ │ ├── @tree │ │ │ ├── @selection │ │ │ │ ├── EntitySelectionIndicator.svelte │ │ │ │ ├── MultiEntitiesMenu.svelte │ │ │ │ ├── SelectedEntitiesBar.svelte │ │ │ │ └── types.ts │ │ │ ├── Canvas.svelte │ │ │ ├── Entity.svelte │ │ │ ├── EntityTree.svelte │ │ │ ├── Folder.svelte │ │ │ ├── Post.svelte │ │ │ ├── state.svelte.ts │ │ │ └── utils.ts │ │ ├── @widgets │ │ │ ├── Widget.svelte │ │ │ ├── WidgetGroup.svelte │ │ │ ├── WidgetPalette.svelte │ │ │ ├── drag-palette-widget-action.ts │ │ │ ├── widget-context.svelte.ts │ │ │ └── widgets │ │ │ │ ├── CharacterCountChangeWidget.svelte │ │ │ │ ├── CharacterCountWidget.svelte │ │ │ │ ├── OnboardingWidget.svelte │ │ │ │ ├── PostRelatedNoteWidget.svelte │ │ │ │ ├── TimerWidget.svelte │ │ │ │ └── index.ts │ │ ├── CanvasDeprecationModal.svelte │ │ ├── CommandPalette.svelte │ │ ├── FontUploadModal.svelte │ │ ├── MaintenanceBanner.svelte │ │ ├── PlanUpgradeModal.svelte │ │ ├── PlanUsageWidget.svelte │ │ ├── Profile.svelte │ │ ├── ReferralWelcomeModal.svelte │ │ ├── Shortcuts.svelte │ │ ├── Sidebar.svelte │ │ ├── ThemeSwitch.svelte │ │ ├── UserMenu.svelte │ │ ├── UserSurveyModal.svelte │ │ ├── [slug] │ │ │ ├── +page.svelte │ │ │ ├── @anchor │ │ │ │ ├── Anchor.svelte │ │ │ │ └── Anchors.svelte │ │ │ ├── @canvas │ │ │ │ ├── Canvas.svelte │ │ │ │ ├── Panel.svelte │ │ │ │ ├── PanelButton.svelte │ │ │ │ ├── Toolbar.svelte │ │ │ │ ├── ToolbarButton.svelte │ │ │ │ └── Zoom.svelte │ │ │ ├── @panel │ │ │ │ ├── Panel.svelte │ │ │ │ ├── PanelAnchors.svelte │ │ │ │ ├── PanelBodySettings.svelte │ │ │ │ ├── PanelCharacterCount.svelte │ │ │ │ ├── PanelCharacterCountChange.svelte │ │ │ │ ├── PanelInfo.svelte │ │ │ │ ├── PanelNote.svelte │ │ │ │ ├── PanelSpellcheck.svelte │ │ │ │ └── PanelTimeline.svelte │ │ │ ├── @split-view │ │ │ │ ├── CloseSplitView.svelte │ │ │ │ ├── Resizer.svelte │ │ │ │ ├── SplitViews.svelte │ │ │ │ ├── View.svelte │ │ │ │ ├── ViewDropZone.svelte │ │ │ │ ├── context.svelte.ts │ │ │ │ ├── drag-context.svelte.ts │ │ │ │ ├── drag-view-action.ts │ │ │ │ ├── editor-registry.svelte.ts │ │ │ │ └── utils.ts │ │ │ ├── @toolbar │ │ │ │ ├── BottomToolbar.svelte │ │ │ │ ├── ToolbarButton.svelte │ │ │ │ ├── ToolbarColorGrid.svelte │ │ │ │ ├── ToolbarDropdownButton.svelte │ │ │ │ ├── ToolbarFloatingLink.svelte │ │ │ │ ├── ToolbarFloatingRuby.svelte │ │ │ │ ├── ToolbarFontFamily.svelte │ │ │ │ ├── ToolbarFontSize.svelte │ │ │ │ ├── ToolbarFontWeight.svelte │ │ │ │ ├── ToolbarIcon.svelte │ │ │ │ ├── ToolbarPanelTabButton.svelte │ │ │ │ └── TopToolbar.svelte │ │ │ ├── Cover.svelte │ │ │ ├── Editor.svelte │ │ │ ├── FloatingFindReplace.svelte │ │ │ ├── Highlight.svelte │ │ │ ├── Limit.svelte │ │ │ ├── PasteModal.svelte │ │ │ ├── TemplateModal.svelte │ │ │ ├── Timer.svelte │ │ │ └── state.svelte.ts │ │ ├── home │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ ├── initial │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ └── survey.types.ts │ │ ├── (landing) │ │ ├── (index) │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ ├── CallToAction.svelte │ │ │ ├── Features.svelte │ │ │ ├── Hero.svelte │ │ │ ├── Testimonials.svelte │ │ │ └── images │ │ │ │ └── hero.webp │ │ ├── +layout.server.ts │ │ ├── +layout.svelte │ │ ├── Footer.svelte │ │ ├── Header.svelte │ │ ├── changelog │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ └── pricing │ │ │ └── +page.svelte │ │ ├── _internal │ │ ├── export │ │ │ └── pdf │ │ │ │ ├── +layout.ts │ │ │ │ └── [slug] │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ └── pm-schema │ │ │ └── +page.svelte │ │ ├── _webview │ │ ├── +layout.ts │ │ ├── canvas │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ └── Zoom.svelte │ │ └── editor │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ ├── Anchors.svelte │ │ │ ├── FindReplace.svelte │ │ │ ├── Highlight.svelte │ │ │ ├── Limit.svelte │ │ │ ├── Spellcheck.svelte │ │ │ ├── caret.ts │ │ │ └── state.svelte.ts │ │ ├── admin │ │ ├── +layout.svelte │ │ ├── +layout.ts │ │ ├── +page.svelte │ │ ├── +page.ts │ │ ├── posts │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ └── [postId] │ │ │ │ ├── +page.svelte │ │ │ │ └── +page.ts │ │ ├── stats │ │ │ └── +page.svelte │ │ └── users │ │ │ ├── +page.svelte │ │ │ ├── +page.ts │ │ │ └── [userId] │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ ├── authorize │ │ └── +server.ts │ │ ├── legal │ │ ├── privacy │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ └── terms │ │ │ ├── +page.svelte │ │ │ └── +page.ts │ │ ├── open │ │ ├── +page.svelte │ │ ├── +page.ts │ │ ├── SmallStatCard.svelte │ │ ├── Sparkline.svelte │ │ └── StatCard.svelte │ │ └── sitemap.xml │ │ └── +server.ts │ ├── static │ ├── .well-known │ │ ├── apple-app-site-association │ │ └── assetlinks.json │ ├── b71915d51b9fe8c9d5b02924b9da6b8f.txt │ ├── icons │ │ ├── favicon.png │ │ └── favicon.svg │ └── naverbdac85c2d31db08a597eadb33601d0dd.html │ ├── svelte.config.js │ ├── tsconfig.json │ └── vite.config.ts ├── bun.lock ├── bunfig.toml ├── crates ├── fondue │ ├── .gitignore │ ├── Cargo.toml │ ├── build.rs │ ├── out │ │ ├── fondue.darwin-arm64.node │ │ ├── fondue.linux-arm64-gnu.node │ │ ├── index.d.ts │ │ └── index.js │ ├── package.json │ └── src │ │ ├── lib.rs │ │ ├── wrapper.cpp │ │ └── wrapper.h ├── vermuda-boot │ ├── Cargo.toml │ ├── justfile │ └── src │ │ ├── bin │ │ └── pack.rs │ │ ├── main.rs │ │ └── rng_protocol.rs └── vermuda │ ├── Cargo.toml │ ├── config.toml │ ├── config.toml.example │ ├── entitlements.plist │ ├── justfile │ └── src │ ├── app_delegate.rs │ ├── config.rs │ ├── disk.rs │ ├── display.rs │ ├── error.rs │ ├── main.rs │ ├── main_thread.rs │ ├── vm.rs │ ├── vm_delegate.rs │ ├── vmnet.rs │ └── window_delegate.rs ├── cspell.json ├── cspell.txt ├── docs ├── CLA └── CODE_OF_CONDUCT ├── doppler.yaml ├── eslint.config.js ├── hooks └── edit.js ├── infrastructure ├── machines │ ├── factory.yaml │ ├── patches │ │ ├── axolotl.yaml │ │ ├── base.yaml │ │ ├── beaver.yaml │ │ ├── capybara.yaml │ │ ├── controlplane.yaml │ │ ├── ferret.yaml │ │ ├── meerkat.yaml │ │ ├── quokka.yaml │ │ ├── secrets.enc.yaml │ │ └── wallaby.yaml │ ├── run.ts │ └── secrets.enc.yaml ├── misc │ └── frr.conf └── terraform │ ├── main.tf │ ├── modules.tf │ └── modules │ ├── cloudfront │ ├── certificates.tf │ ├── distributions.tf │ ├── oac.tf │ ├── policies.tf │ ├── route53.tf │ ├── variables.tf │ └── versions.tf │ ├── ecr │ └── iam.tf │ ├── iam │ ├── roles.tf │ ├── ssm.tf │ └── users.tf │ ├── lambda │ ├── literoom.tf │ └── outputs.tf │ ├── route53 │ ├── outputs.tf │ ├── records.tf │ └── zones.tf │ ├── s3 │ ├── app.tf │ ├── cdn.tf │ ├── misc.tf │ ├── uploads.tf │ └── usercontents.tf │ └── ses │ ├── dkim.tf │ ├── identity.tf │ ├── route53.tf │ └── variables.tf ├── lefthook.yml ├── mise.toml ├── package.json ├── packages ├── adapter-node │ ├── package.json │ ├── src │ │ ├── index.d.ts │ │ ├── index.js │ │ └── serve.js │ └── tsconfig.json ├── lib │ ├── package.json │ ├── src │ │ ├── compression.ts │ │ ├── dayjs │ │ │ ├── index.ts │ │ │ └── plugins │ │ │ │ ├── format-as.ts │ │ │ │ └── kst.ts │ │ ├── hono.ts │ │ ├── index.ts │ │ ├── logging.ts │ │ ├── postcss │ │ │ └── index.js │ │ ├── svelte │ │ │ ├── hooks.ts │ │ │ ├── index.ts │ │ │ └── sitemap.ts │ │ └── vite │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── plugins │ │ │ └── svg.js │ └── tsconfig.json ├── lintconfig │ ├── eslint-ignore.js │ ├── eslint.js │ ├── package.json │ └── prettier.js ├── sark │ ├── bin │ │ └── sark.js │ ├── package.json │ ├── src │ │ ├── codegen │ │ │ ├── artifact │ │ │ │ └── index.ts │ │ │ ├── ast.ts │ │ │ ├── cli.ts │ │ │ ├── codegen │ │ │ │ ├── generator.ts │ │ │ │ └── writer.ts │ │ │ ├── const.ts │ │ │ ├── parser │ │ │ │ ├── arguments.ts │ │ │ │ ├── selection.ts │ │ │ │ └── variables.ts │ │ │ ├── utils.ts │ │ │ └── vite │ │ │ │ ├── index.ts │ │ │ │ └── transform.ts │ │ ├── runtime │ │ │ ├── cache │ │ │ │ ├── cache.test.ts │ │ │ │ ├── cache.ts │ │ │ │ ├── denormalize.test.ts │ │ │ │ ├── denormalize.ts │ │ │ │ ├── normalize.test.ts │ │ │ │ ├── normalize.ts │ │ │ │ ├── operations.ts │ │ │ │ ├── tests │ │ │ │ │ ├── schema.graphql │ │ │ │ │ └── utils.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── client │ │ │ │ ├── client.ts │ │ │ │ ├── index.ts │ │ │ │ └── internal.ts │ │ │ ├── exchanges │ │ │ │ ├── cache.test.ts │ │ │ │ ├── cache.ts │ │ │ │ ├── compose.ts │ │ │ │ ├── error.ts │ │ │ │ ├── fetch.test.ts │ │ │ │ ├── fetch.ts │ │ │ │ ├── index.ts │ │ │ │ ├── logging.test.ts │ │ │ │ ├── logging.ts │ │ │ │ ├── sse.ts │ │ │ │ ├── tests │ │ │ │ │ └── utils.ts │ │ │ │ ├── utils.ts │ │ │ │ └── ws.ts │ │ │ ├── index.ts │ │ │ ├── internal │ │ │ │ ├── cache.ts │ │ │ │ ├── error.ts │ │ │ │ ├── functions.ts │ │ │ │ ├── index.ts │ │ │ │ ├── load.ts │ │ │ │ ├── stores │ │ │ │ │ ├── fragment.ts │ │ │ │ │ ├── mutation.test.ts │ │ │ │ │ ├── mutation.ts │ │ │ │ │ ├── query.ts │ │ │ │ │ └── subscription.ts │ │ │ │ └── types.ts │ │ │ └── types.ts │ │ └── types.ts │ ├── tsconfig.json │ ├── tsup.config.ts │ └── vitest.config.ts ├── styled-system │ ├── package.json │ ├── panda.config.ts │ ├── src │ │ ├── aspect-ratios.ts │ │ ├── blurs.ts │ │ ├── border-widths.ts │ │ ├── breakpoints.ts │ │ ├── colors.ts │ │ ├── conditions.ts │ │ ├── font-sizes.ts │ │ ├── font-weights.ts │ │ ├── fonts.ts │ │ ├── global.ts │ │ ├── gradients.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── keyframes.ts │ │ ├── line-heights.ts │ │ ├── opacity.ts │ │ ├── radii.ts │ │ ├── shadows.ts │ │ ├── sizes.ts │ │ ├── spacing.ts │ │ ├── tokens.ts │ │ ├── utilities.ts │ │ └── z-index.ts │ └── tsconfig.json ├── tsconfig │ ├── index.d.ts │ ├── package.json │ └── tsconfig.json └── ui │ ├── package.json │ ├── src │ ├── actions │ │ ├── TooltipComponent.svelte │ │ ├── autosize.svelte.ts │ │ ├── context-menu.svelte.ts │ │ ├── floating.svelte.ts │ │ ├── focus-trap.svelte.ts │ │ ├── hover.svelte.ts │ │ ├── index.ts │ │ ├── outside-click.svelte.ts │ │ ├── portal.svelte.ts │ │ ├── scroll-lock.svelte.ts │ │ ├── textarea-scrollpadding.svelte.ts │ │ └── tooltip.svelte.ts │ ├── anchor │ │ ├── index.ts │ │ └── utils.ts │ ├── canvas │ │ ├── CanvasEditor.svelte │ │ ├── class.svelte.ts │ │ ├── clipboard.ts │ │ ├── const.ts │ │ ├── cursor-manager.ts │ │ ├── environment.ts │ │ ├── index.ts │ │ ├── operations │ │ │ ├── arrow.ts │ │ │ ├── brush.ts │ │ │ ├── ellipse.ts │ │ │ ├── index.ts │ │ │ ├── line.ts │ │ │ ├── move.ts │ │ │ ├── pan.ts │ │ │ ├── pinch.ts │ │ │ ├── rectangle.ts │ │ │ ├── resize.ts │ │ │ ├── select.ts │ │ │ └── stickynote.ts │ │ ├── rough.ts │ │ ├── scene.ts │ │ ├── selection.ts │ │ ├── shapes │ │ │ ├── arrow.ts │ │ │ ├── brush.ts │ │ │ ├── ellipse.ts │ │ │ ├── index.ts │ │ │ ├── line.ts │ │ │ ├── rectangle.ts │ │ │ ├── shape.ts │ │ │ ├── stickynote.ts │ │ │ └── types.ts │ │ ├── sync-manager.ts │ │ ├── types.ts │ │ ├── utils.ts │ │ └── values.ts │ ├── components │ │ ├── Button.svelte │ │ ├── Checkbox.svelte │ │ ├── ContentProtect.svelte │ │ ├── DropdownMenu.svelte │ │ ├── DropdownMenuItem.svelte │ │ ├── Helmet.svelte │ │ ├── HorizontalDivider.svelte │ │ ├── Icon.svelte │ │ ├── Img.svelte │ │ ├── Menu.svelte │ │ ├── MenuItem.svelte │ │ ├── Modal.svelte │ │ ├── Popover.svelte │ │ ├── RingSpinner.svelte │ │ ├── SearchableDropdown.svelte │ │ ├── SegmentButtons.svelte │ │ ├── Select.svelte │ │ ├── Slider.svelte │ │ ├── Switch.svelte │ │ ├── TextInput.svelte │ │ ├── Tooltip.svelte │ │ ├── VerticalDivider.svelte │ │ ├── editor │ │ │ ├── EditorLayout.svelte │ │ │ └── EditorZoom.svelte │ │ └── index.ts │ ├── constants │ │ ├── admin.ts │ │ ├── index.ts │ │ └── plan-features.ts │ ├── context │ │ ├── app.svelte.ts │ │ ├── index.ts │ │ └── theme.svelte.ts │ ├── effects │ │ ├── Grain.svelte │ │ └── index.ts │ ├── form │ │ ├── form.svelte.ts │ │ └── index.ts │ ├── global.d.ts │ ├── notification │ │ ├── Provider.svelte │ │ ├── dialog │ │ │ ├── Component.svelte │ │ │ ├── Provider.svelte │ │ │ └── store.ts │ │ ├── index.ts │ │ ├── sonner │ │ │ ├── Component.svelte │ │ │ └── Provider.svelte │ │ ├── tip │ │ │ ├── Item.svelte │ │ │ ├── Shortcut.svelte │ │ │ └── index.ts │ │ ├── toast │ │ │ ├── Item.svelte │ │ │ └── index.ts │ │ └── updater │ │ │ ├── Item.svelte │ │ │ └── index.ts │ ├── state │ │ ├── index.ts │ │ ├── local-store.svelte.ts │ │ ├── query-string.svelte.ts │ │ └── session-store.svelte.ts │ ├── tiptap │ │ ├── assets │ │ │ ├── blockquote │ │ │ │ ├── left-line.svelte │ │ │ │ ├── left-quote.svelte │ │ │ │ ├── message-received.svelte │ │ │ │ ├── message-sent.svelte │ │ │ │ └── message-tail.svg │ │ │ └── horizontal-rule │ │ │ │ ├── circle-line.svelte │ │ │ │ ├── circle.svelte │ │ │ │ ├── dashed-line.svelte │ │ │ │ ├── diamond-line.svelte │ │ │ │ ├── diamond.svelte │ │ │ │ ├── light-line.svelte │ │ │ │ ├── three-circles.svelte │ │ │ │ ├── three-diamonds.svelte │ │ │ │ └── zigzag.svelte │ │ ├── components │ │ │ ├── TiptapEditor.svelte │ │ │ ├── TiptapNodeViewBubbleMenu.svelte │ │ │ ├── TiptapRenderer.svelte │ │ │ └── index.ts │ │ ├── extensions │ │ │ ├── TemplatePlaceholderWidget.svelte │ │ │ ├── auto-surround.ts │ │ │ ├── behavior.ts │ │ │ ├── clear-formatting.ts │ │ │ ├── clipboard.ts │ │ │ ├── collaboration.ts │ │ │ ├── command.ts │ │ │ ├── drop-cursor.ts │ │ │ ├── index.ts │ │ │ ├── ios-selection.ts │ │ │ ├── node-commands.ts │ │ │ ├── node-id.ts │ │ │ ├── notify-idle.ts │ │ │ ├── page.ts │ │ │ ├── placeholder.ts │ │ │ ├── safari-ime-fix.ts │ │ │ ├── search.ts │ │ │ ├── selection.ts │ │ │ ├── sentence-navigation.ts │ │ │ ├── syntax-highlight.ts │ │ │ ├── template-placeholder.ts │ │ │ ├── trailing-node.ts │ │ │ ├── typewriter.ts │ │ │ └── typography.ts │ │ ├── index.ts │ │ ├── lib │ │ │ ├── NodeView.svelte │ │ │ ├── NodeViewContentEditable.svelte │ │ │ ├── context.svelte.ts │ │ │ ├── create.ts │ │ │ ├── html.ts │ │ │ ├── index.ts │ │ │ ├── node-utils.ts │ │ │ ├── renderer.svelte.ts │ │ │ └── utils.ts │ │ ├── marks │ │ │ ├── bold.ts │ │ │ ├── index.ts │ │ │ ├── italic.ts │ │ │ ├── link.ts │ │ │ ├── ruby.ts │ │ │ ├── strike.ts │ │ │ ├── text-style.ts │ │ │ └── underline.ts │ │ ├── menus │ │ │ ├── floating │ │ │ │ ├── Left.svelte │ │ │ │ ├── Right.svelte │ │ │ │ ├── extension.svelte.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ └── slash │ │ │ │ ├── Component.svelte │ │ │ │ ├── extension.svelte.ts │ │ │ │ ├── index.ts │ │ │ │ ├── items.ts │ │ │ │ └── types.ts │ │ ├── node-views │ │ │ ├── blockquote │ │ │ │ ├── Component.svelte │ │ │ │ └── index.ts │ │ │ ├── callout │ │ │ │ ├── Component.svelte │ │ │ │ └── index.ts │ │ │ ├── code-block │ │ │ │ ├── Component.svelte │ │ │ │ ├── Menu.svelte │ │ │ │ └── index.ts │ │ │ ├── embed │ │ │ │ ├── Component.svelte │ │ │ │ └── index.ts │ │ │ ├── file │ │ │ │ ├── Component.svelte │ │ │ │ └── index.ts │ │ │ ├── fold │ │ │ │ ├── Component.svelte │ │ │ │ └── index.ts │ │ │ ├── horizontal-rule │ │ │ │ ├── Component.svelte │ │ │ │ └── index.ts │ │ │ ├── html-block │ │ │ │ ├── Component.svelte │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ ├── image │ │ │ │ ├── Component.svelte │ │ │ │ ├── Enlarge.svelte │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── page-break │ │ │ │ ├── Component.svelte │ │ │ │ └── index.ts │ │ │ ├── table │ │ │ │ ├── AddRowColButton.svelte │ │ │ │ ├── ColHandle.svelte │ │ │ │ ├── RowHandle.svelte │ │ │ │ ├── Table.svelte │ │ │ │ ├── TableCell.svelte │ │ │ │ ├── TableRow.svelte │ │ │ │ ├── index.ts │ │ │ │ ├── table-cell.ts │ │ │ │ ├── table-row.ts │ │ │ │ ├── table.ts │ │ │ │ └── utils.ts │ │ │ └── utils │ │ │ │ └── resize.ts │ │ ├── nodes │ │ │ ├── body.ts │ │ │ ├── bullet-list.ts │ │ │ ├── doc.ts │ │ │ ├── hard-break.ts │ │ │ ├── index.ts │ │ │ ├── list-item.ts │ │ │ ├── ordered-list.ts │ │ │ ├── paragraph.ts │ │ │ └── text.ts │ │ ├── schema.ts │ │ ├── text-styles │ │ │ ├── font-family.ts │ │ │ ├── font-size.ts │ │ │ ├── font-weight.ts │ │ │ ├── index.ts │ │ │ ├── text-background-color.ts │ │ │ └── text-color.ts │ │ ├── types.ts │ │ ├── values-base.ts │ │ └── values.ts │ ├── transitions │ │ ├── index.ts │ │ └── typewriter.ts │ └── utils │ │ ├── auth.ts │ │ ├── device.ts │ │ ├── dnd-handler.ts │ │ ├── download.ts │ │ ├── drag-scroll.ts │ │ ├── escape-stack.ts │ │ ├── flip-animation.ts │ │ ├── index.ts │ │ ├── json.ts │ │ ├── note-colors.ts │ │ ├── number.ts │ │ ├── page-layout.ts │ │ ├── ref.ts │ │ ├── remeda.ts │ │ ├── text.ts │ │ ├── types.ts │ │ └── unit.ts │ ├── styles │ ├── index.css │ ├── prose.css │ ├── theme.css │ └── view-transition.css │ ├── svelte.config.js │ └── tsconfig.json ├── patches └── .gitkeep ├── prettier.config.js ├── rustfmt.toml ├── syncpack.config.cjs ├── turbo.json └── vendor ├── sharp-al2023.tar.xz └── sharp-debian.tar.xz /.claude/agents/linter-error-fixer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.claude/agents/linter-error-fixer.md -------------------------------------------------------------------------------- /.claude/commands/sanity-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.claude/commands/sanity-check.md -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.coderabbit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.coderabbit.yaml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | dotenv_if_exists .env.local 2 | 3 | export SOPS_AGE_KEY_FILE="$HOME/.sops/age/keys.txt" 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @devunt @dolsup 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.github/workflows/cd.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.github/workflows/deployment.yml -------------------------------------------------------------------------------- /.github/workflows/production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.github/workflows/production.yml -------------------------------------------------------------------------------- /.github/workflows/sharp-al2023.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.github/workflows/sharp-al2023.yml -------------------------------------------------------------------------------- /.github/workflows/sharp-debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.github/workflows/sharp-debian.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.prettierignore -------------------------------------------------------------------------------- /.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.sops.yaml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/README -------------------------------------------------------------------------------- /apps/api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/Dockerfile -------------------------------------------------------------------------------- /apps/api/drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle.config.ts -------------------------------------------------------------------------------- /apps/api/drizzle/0000_brave_tempest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0000_brave_tempest.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0001_dizzy_mathemanic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0001_dizzy_mathemanic.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0002_glossy_jimmy_woo.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "post_contents" ADD COLUMN "note" text DEFAULT '' NOT NULL; -------------------------------------------------------------------------------- /apps/api/drizzle/0003_goofy_puma.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0003_goofy_puma.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0004_cooing_karen_page.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0004_cooing_karen_page.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0005_zippy_firebird.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0005_zippy_firebird.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0006_volatile_richard_fisk.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0006_volatile_richard_fisk.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0007_opposite_lake.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0007_opposite_lake.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0008_warm_wild_child.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0008_warm_wild_child.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0009_tan_mole_man.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0009_tan_mole_man.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0010_wooden_rage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0010_wooden_rage.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0011_lovely_darwin.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0011_lovely_darwin.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0012_purple_sharon_carter.sql: -------------------------------------------------------------------------------- 1 | -- empty -------------------------------------------------------------------------------- /apps/api/drizzle/0013_majestic_morlocks.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0013_majestic_morlocks.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0014_unique_toro.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0014_unique_toro.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0015_warm_clint_barton.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0015_warm_clint_barton.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0016_bumpy_slapstick.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0016_bumpy_slapstick.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0017_little_titanium_man.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0017_little_titanium_man.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0018_pale_albert_cleary.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "canvas_contents" DROP COLUMN "orders"; -------------------------------------------------------------------------------- /apps/api/drizzle/0019_broad_hardball.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0019_broad_hardball.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0020_bizarre_jean_grey.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0020_bizarre_jean_grey.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0022_smart_ogun.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0022_smart_ogun.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0024_last_ma_gnuci.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0024_last_ma_gnuci.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0025_kind_doctor_octopus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0025_kind_doctor_octopus.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0026_great_jimmy_woo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0026_great_jimmy_woo.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0027_classy_wildside.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0027_classy_wildside.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0028_neat_prowler.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0028_neat_prowler.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0029_lyrical_korg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0029_lyrical_korg.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0030_dusty_kree.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0030_dusty_kree.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0031_fat_dexter_bennett.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0031_fat_dexter_bennett.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0032_tiresome_clea.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0032_tiresome_clea.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0033_sleepy_silvermane.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0033_sleepy_silvermane.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0034_parallel_sunspot.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0034_parallel_sunspot.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0035_stale_black_crow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0035_stale_black_crow.sql -------------------------------------------------------------------------------- /apps/api/drizzle/0036_same_mister_fear.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/0036_same_mister_fear.sql -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0001_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0001_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0002_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0002_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0003_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0003_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0004_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0004_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0005_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0005_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0006_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0006_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0007_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0007_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0008_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0008_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0009_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0009_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0010_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0010_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0011_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0011_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0012_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0012_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0013_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0013_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0014_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0014_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0015_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0015_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0016_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0016_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0017_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0017_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0018_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0018_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0019_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0019_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0020_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0020_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0021_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0021_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0022_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0022_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0023_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0023_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0024_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0024_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0025_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0025_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0026_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0026_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0027_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0027_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0028_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0028_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0029_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0029_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0030_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0030_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0031_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0031_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0032_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0032_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0033_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0033_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0034_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0034_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0035_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0035_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/0036_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/0036_snapshot.json -------------------------------------------------------------------------------- /apps/api/drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /apps/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/package.json -------------------------------------------------------------------------------- /apps/api/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/schema.graphql -------------------------------------------------------------------------------- /apps/api/scripts/compact-snapshots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/scripts/compact-snapshots.ts -------------------------------------------------------------------------------- /apps/api/scripts/create-meilisearch-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/scripts/create-meilisearch-index.ts -------------------------------------------------------------------------------- /apps/api/scripts/generate-jwk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/scripts/generate-jwk.ts -------------------------------------------------------------------------------- /apps/api/scripts/preorder-mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/scripts/preorder-mail.ts -------------------------------------------------------------------------------- /apps/api/scripts/resend-preorder-mail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/scripts/resend-preorder-mail.ts -------------------------------------------------------------------------------- /apps/api/scripts/seed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/scripts/seed.sql -------------------------------------------------------------------------------- /apps/api/scripts/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/scripts/seed.ts -------------------------------------------------------------------------------- /apps/api/scripts/update-meilisearch-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/scripts/update-meilisearch-index.ts -------------------------------------------------------------------------------- /apps/api/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/app.ts -------------------------------------------------------------------------------- /apps/api/src/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/cache.ts -------------------------------------------------------------------------------- /apps/api/src/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/const.ts -------------------------------------------------------------------------------- /apps/api/src/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/context.ts -------------------------------------------------------------------------------- /apps/api/src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/db/index.ts -------------------------------------------------------------------------------- /apps/api/src/db/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/db/logger.ts -------------------------------------------------------------------------------- /apps/api/src/db/schemas/codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/db/schemas/codes.ts -------------------------------------------------------------------------------- /apps/api/src/db/schemas/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/db/schemas/enums.ts -------------------------------------------------------------------------------- /apps/api/src/db/schemas/id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/db/schemas/id.ts -------------------------------------------------------------------------------- /apps/api/src/db/schemas/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/db/schemas/json.ts -------------------------------------------------------------------------------- /apps/api/src/db/schemas/tables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/db/schemas/tables.ts -------------------------------------------------------------------------------- /apps/api/src/db/schemas/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/db/schemas/types.ts -------------------------------------------------------------------------------- /apps/api/src/db/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/db/utils.ts -------------------------------------------------------------------------------- /apps/api/src/email/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/email/index.ts -------------------------------------------------------------------------------- /apps/api/src/email/templates/SignUpEmail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/email/templates/SignUpEmail.tsx -------------------------------------------------------------------------------- /apps/api/src/email/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/email/templates/index.ts -------------------------------------------------------------------------------- /apps/api/src/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/enums.ts -------------------------------------------------------------------------------- /apps/api/src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/env.ts -------------------------------------------------------------------------------- /apps/api/src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/errors.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/docx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/docx.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/marks/ruby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/marks/ruby.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/blockquote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/blockquote.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/callout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/callout.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/code.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/embed.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/file.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/fold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/fold.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/hard-break.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/hard-break.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/html.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/image.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/index.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/list.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/paragraph.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/nodes/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/nodes/table.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/types.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/utils/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/utils/color.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/utils/font-mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/utils/font-mapping.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/utils/marks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/utils/marks.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/utils/text-run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/utils/text-run.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/utils/unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/utils/unit.ts -------------------------------------------------------------------------------- /apps/api/src/export/docx/utils/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/docx/utils/utils.ts -------------------------------------------------------------------------------- /apps/api/src/export/pdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/export/pdf.ts -------------------------------------------------------------------------------- /apps/api/src/external/appstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/appstore.ts -------------------------------------------------------------------------------- /apps/api/src/external/aws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/aws.ts -------------------------------------------------------------------------------- /apps/api/src/external/firebase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/firebase.ts -------------------------------------------------------------------------------- /apps/api/src/external/googleplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/googleplay.ts -------------------------------------------------------------------------------- /apps/api/src/external/iframely.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/iframely.ts -------------------------------------------------------------------------------- /apps/api/src/external/portone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/portone.ts -------------------------------------------------------------------------------- /apps/api/src/external/slack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/slack.ts -------------------------------------------------------------------------------- /apps/api/src/external/spellcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/spellcheck.ts -------------------------------------------------------------------------------- /apps/api/src/external/sso/apple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/sso/apple.ts -------------------------------------------------------------------------------- /apps/api/src/external/sso/google.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/sso/google.ts -------------------------------------------------------------------------------- /apps/api/src/external/sso/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/sso/index.ts -------------------------------------------------------------------------------- /apps/api/src/external/sso/kakao.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/sso/kakao.ts -------------------------------------------------------------------------------- /apps/api/src/external/sso/naver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/sso/naver.ts -------------------------------------------------------------------------------- /apps/api/src/external/sso/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/external/sso/types.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/builder.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/enums.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/index.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/objects.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/plugins/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/plugins/error.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/plugins/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/plugins/logger.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/admin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/admin.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/auth.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/blob.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/canvas.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/entity.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/export.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/export.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/folder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/folder.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/font.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/internal.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/note.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/note.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/payment.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/post.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/search.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/site.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/stats.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/unfurl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/unfurl.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/user.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/resolvers/widget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/resolvers/widget.ts -------------------------------------------------------------------------------- /apps/api/src/graphql/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/graphql/schema.ts -------------------------------------------------------------------------------- /apps/api/src/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/instrumentation.ts -------------------------------------------------------------------------------- /apps/api/src/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/lock.ts -------------------------------------------------------------------------------- /apps/api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/main.ts -------------------------------------------------------------------------------- /apps/api/src/mq/bullmq.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/bullmq.ts -------------------------------------------------------------------------------- /apps/api/src/mq/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/index.ts -------------------------------------------------------------------------------- /apps/api/src/mq/metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/metrics.ts -------------------------------------------------------------------------------- /apps/api/src/mq/tasks/bmo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/tasks/bmo.ts -------------------------------------------------------------------------------- /apps/api/src/mq/tasks/canvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/tasks/canvas.ts -------------------------------------------------------------------------------- /apps/api/src/mq/tasks/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/tasks/email.ts -------------------------------------------------------------------------------- /apps/api/src/mq/tasks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/tasks/index.ts -------------------------------------------------------------------------------- /apps/api/src/mq/tasks/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/tasks/post.ts -------------------------------------------------------------------------------- /apps/api/src/mq/tasks/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/tasks/subscription.ts -------------------------------------------------------------------------------- /apps/api/src/mq/tasks/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/tasks/test.ts -------------------------------------------------------------------------------- /apps/api/src/mq/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/mq/types.ts -------------------------------------------------------------------------------- /apps/api/src/pm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/pm/index.ts -------------------------------------------------------------------------------- /apps/api/src/pm/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/pm/schema.json -------------------------------------------------------------------------------- /apps/api/src/pm/serializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/pm/serializer.ts -------------------------------------------------------------------------------- /apps/api/src/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/pubsub.ts -------------------------------------------------------------------------------- /apps/api/src/rest/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/rest/auth.ts -------------------------------------------------------------------------------- /apps/api/src/rest/bmo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/rest/bmo.ts -------------------------------------------------------------------------------- /apps/api/src/rest/healthz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/rest/healthz.ts -------------------------------------------------------------------------------- /apps/api/src/rest/iap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/rest/iap.ts -------------------------------------------------------------------------------- /apps/api/src/rest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/rest/index.ts -------------------------------------------------------------------------------- /apps/api/src/rest/og.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/rest/og.tsx -------------------------------------------------------------------------------- /apps/api/src/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/search.ts -------------------------------------------------------------------------------- /apps/api/src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/auth.ts -------------------------------------------------------------------------------- /apps/api/src/utils/chart-generation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/chart-generation.tsx -------------------------------------------------------------------------------- /apps/api/src/utils/compression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/compression.ts -------------------------------------------------------------------------------- /apps/api/src/utils/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/date.ts -------------------------------------------------------------------------------- /apps/api/src/utils/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/entity.ts -------------------------------------------------------------------------------- /apps/api/src/utils/image-generation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/image-generation.tsx -------------------------------------------------------------------------------- /apps/api/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/index.ts -------------------------------------------------------------------------------- /apps/api/src/utils/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/name.ts -------------------------------------------------------------------------------- /apps/api/src/utils/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/order.ts -------------------------------------------------------------------------------- /apps/api/src/utils/payment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/payment.ts -------------------------------------------------------------------------------- /apps/api/src/utils/pdf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/pdf.ts -------------------------------------------------------------------------------- /apps/api/src/utils/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/permission.ts -------------------------------------------------------------------------------- /apps/api/src/utils/plan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/plan.ts -------------------------------------------------------------------------------- /apps/api/src/utils/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/promise.ts -------------------------------------------------------------------------------- /apps/api/src/utils/site.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/site.ts -------------------------------------------------------------------------------- /apps/api/src/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/text.ts -------------------------------------------------------------------------------- /apps/api/src/utils/user-contents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/user-contents.ts -------------------------------------------------------------------------------- /apps/api/src/utils/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/utils/user.ts -------------------------------------------------------------------------------- /apps/api/src/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/src/validation.ts -------------------------------------------------------------------------------- /apps/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/api/tsconfig.json -------------------------------------------------------------------------------- /apps/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/caddy/Caddyfile -------------------------------------------------------------------------------- /apps/caddy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/caddy/package.json -------------------------------------------------------------------------------- /apps/desktop/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/.env -------------------------------------------------------------------------------- /apps/desktop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/.gitignore -------------------------------------------------------------------------------- /apps/desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/package.json -------------------------------------------------------------------------------- /apps/desktop/panda.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/panda.config.js -------------------------------------------------------------------------------- /apps/desktop/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/postcss.config.js -------------------------------------------------------------------------------- /apps/desktop/schema.graphql: -------------------------------------------------------------------------------- 1 | ../api/schema.graphql -------------------------------------------------------------------------------- /apps/desktop/src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /apps/desktop/src-tauri/Tauri.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src-tauri/Tauri.toml -------------------------------------------------------------------------------- /apps/desktop/src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src-tauri/build.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /apps/desktop/src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /apps/desktop/src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src-tauri/src/main.rs -------------------------------------------------------------------------------- /apps/desktop/src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/ambient.d.ts -------------------------------------------------------------------------------- /apps/desktop/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/app.css -------------------------------------------------------------------------------- /apps/desktop/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/app.d.ts -------------------------------------------------------------------------------- /apps/desktop/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/app.html -------------------------------------------------------------------------------- /apps/desktop/src/assets/logos/favicon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/assets/logos/favicon-dark.svg -------------------------------------------------------------------------------- /apps/desktop/src/assets/logos/favicon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/assets/logos/favicon-light.svg -------------------------------------------------------------------------------- /apps/desktop/src/assets/logos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/assets/logos/logo.svg -------------------------------------------------------------------------------- /apps/desktop/src/hooks/client.ts: -------------------------------------------------------------------------------- 1 | import '@typie/lib/dayjs'; 2 | -------------------------------------------------------------------------------- /apps/desktop/src/icons/bell-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/bell-filled.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/bookmark-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/bookmark-filled.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/exclamation.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/folder-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/folder-filled.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/folder-open-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/folder-open-filled.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/google.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/horizontal-rule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/horizontal-rule.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/inbox-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/inbox-filled.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/kakao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/kakao.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/letter-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/letter-spacing.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/line-height.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/line-height.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/ruby.svg -------------------------------------------------------------------------------- /apps/desktop/src/icons/search-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/icons/search-filled.svg -------------------------------------------------------------------------------- /apps/desktop/src/lib/components/Img.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/lib/components/Img.svelte -------------------------------------------------------------------------------- /apps/desktop/src/lib/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/lib/components/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/lib/graphql/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/desktop/src/lib/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/lib/store.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/utils/blob.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/lib/utils/blob.svelte -------------------------------------------------------------------------------- /apps/desktop/src/lib/utils/embed.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/lib/utils/embed.svelte -------------------------------------------------------------------------------- /apps/desktop/src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/lib/utils/index.ts -------------------------------------------------------------------------------- /apps/desktop/src/lib/utils/yjs-post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/lib/utils/yjs-post.ts -------------------------------------------------------------------------------- /apps/desktop/src/routes/(app)/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/routes/(app)/+page.svelte -------------------------------------------------------------------------------- /apps/desktop/src/routes/(app)/+page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/routes/(app)/+page.ts -------------------------------------------------------------------------------- /apps/desktop/src/routes/(app)/Sidebar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/routes/(app)/Sidebar.svelte -------------------------------------------------------------------------------- /apps/desktop/src/routes/(app)/TabBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/routes/(app)/TabBar.svelte -------------------------------------------------------------------------------- /apps/desktop/src/routes/(app)/tabs.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/routes/(app)/tabs.svelte.ts -------------------------------------------------------------------------------- /apps/desktop/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/routes/+layout.svelte -------------------------------------------------------------------------------- /apps/desktop/src/routes/+layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/routes/+layout.ts -------------------------------------------------------------------------------- /apps/desktop/src/routes/auth/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/routes/auth/+layout.svelte -------------------------------------------------------------------------------- /apps/desktop/src/routes/auth/login/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/src/routes/auth/login/+page.svelte -------------------------------------------------------------------------------- /apps/desktop/static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/desktop/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/svelte.config.js -------------------------------------------------------------------------------- /apps/desktop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/tsconfig.json -------------------------------------------------------------------------------- /apps/desktop/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/desktop/vite.config.ts -------------------------------------------------------------------------------- /apps/literoom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/literoom/package.json -------------------------------------------------------------------------------- /apps/literoom/scripts/build-layers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/literoom/scripts/build-layers.ts -------------------------------------------------------------------------------- /apps/literoom/scripts/package-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/literoom/scripts/package-function.ts -------------------------------------------------------------------------------- /apps/literoom/src/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/literoom/src/handler.ts -------------------------------------------------------------------------------- /apps/literoom/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@typie/tsconfig"] 3 | } 4 | -------------------------------------------------------------------------------- /apps/literoom/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/literoom/tsup.config.ts -------------------------------------------------------------------------------- /apps/mobile/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/.env -------------------------------------------------------------------------------- /apps/mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/.gitignore -------------------------------------------------------------------------------- /apps/mobile/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/.metadata -------------------------------------------------------------------------------- /apps/mobile/README.md: -------------------------------------------------------------------------------- 1 | # app 2 | 3 | A new Flutter project. 4 | -------------------------------------------------------------------------------- /apps/mobile/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/analysis_options.yaml -------------------------------------------------------------------------------- /apps/mobile/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/android/.gitignore -------------------------------------------------------------------------------- /apps/mobile/android/app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/android/app/build.gradle.kts -------------------------------------------------------------------------------- /apps/mobile/android/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/android/app/google-services.json -------------------------------------------------------------------------------- /apps/mobile/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /apps/mobile/android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/android/build.gradle.kts -------------------------------------------------------------------------------- /apps/mobile/android/fastlane/Appfile: -------------------------------------------------------------------------------- 1 | package_name("co.typie") 2 | -------------------------------------------------------------------------------- /apps/mobile/android/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/android/fastlane/Fastfile -------------------------------------------------------------------------------- /apps/mobile/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/android/gradle.properties -------------------------------------------------------------------------------- /apps/mobile/android/keystore-debug.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/android/keystore-debug.jks -------------------------------------------------------------------------------- /apps/mobile/android/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/android/settings.gradle.kts -------------------------------------------------------------------------------- /apps/mobile/assets/brands/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/brands/apple.svg -------------------------------------------------------------------------------- /apps/mobile/assets/brands/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/brands/google.svg -------------------------------------------------------------------------------- /apps/mobile/assets/brands/kakao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/brands/kakao.svg -------------------------------------------------------------------------------- /apps/mobile/assets/brands/naver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/brands/naver.svg -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/Interop-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/fonts/Interop-Bold.otf -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/Interop-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/fonts/Interop-Medium.otf -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/Interop-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/fonts/Interop-Regular.otf -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/Interop-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/fonts/Interop-SemiBold.otf -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/LucideLabIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/fonts/LucideLabIcons.ttf -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/LucideLightIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/fonts/LucideLightIcons.ttf -------------------------------------------------------------------------------- /apps/mobile/assets/fonts/TypieIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/fonts/TypieIcons.ttf -------------------------------------------------------------------------------- /apps/mobile/assets/icons/chevrons-down-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/chevrons-down-up.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/code-xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/code-xml.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/code.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/file-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/file-up.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/horizontal-rule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/horizontal-rule.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/image.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/left-quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/left-quote.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/list.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/paperclip.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/quote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/quote.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/table.svg -------------------------------------------------------------------------------- /apps/mobile/assets/icons/zigzag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/icons/zigzag.svg -------------------------------------------------------------------------------- /apps/mobile/assets/logos/full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/assets/logos/full.svg -------------------------------------------------------------------------------- /apps/mobile/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/build.yaml -------------------------------------------------------------------------------- /apps/mobile/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/firebase.json -------------------------------------------------------------------------------- /apps/mobile/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/.gitignore -------------------------------------------------------------------------------- /apps/mobile/ios/ExportOptions.AppStore.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/ExportOptions.AppStore.plist -------------------------------------------------------------------------------- /apps/mobile/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /apps/mobile/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Flutter/Debug.xcconfig -------------------------------------------------------------------------------- /apps/mobile/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Flutter/Release.xcconfig -------------------------------------------------------------------------------- /apps/mobile/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Podfile -------------------------------------------------------------------------------- /apps/mobile/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Podfile.lock -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/Configuration.storekit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Runner/Configuration.storekit -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Runner/GoogleService-Info.plist -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Runner/Info.plist -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/InfoPlist.xcstrings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Runner/InfoPlist.xcstrings -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Runner/LaunchScreen.storyboard -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Runner/Main.storyboard -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/Runner.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Runner/Runner.entitlements -------------------------------------------------------------------------------- /apps/mobile/ios/Runner/WebView/AppWebView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/Runner/WebView/AppWebView.swift -------------------------------------------------------------------------------- /apps/mobile/ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/RunnerTests/RunnerTests.swift -------------------------------------------------------------------------------- /apps/mobile/ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/fastlane/Appfile -------------------------------------------------------------------------------- /apps/mobile/ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/fastlane/Fastfile -------------------------------------------------------------------------------- /apps/mobile/ios/fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/ios/fastlane/Matchfile -------------------------------------------------------------------------------- /apps/mobile/lib/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/app.dart -------------------------------------------------------------------------------- /apps/mobile/lib/constants/plan_features.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/constants/plan_features.dart -------------------------------------------------------------------------------- /apps/mobile/lib/constants/router_tab_index.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/constants/router_tab_index.dart -------------------------------------------------------------------------------- /apps/mobile/lib/context/bottom_sheet.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/context/bottom_sheet.dart -------------------------------------------------------------------------------- /apps/mobile/lib/context/loader.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/context/loader.dart -------------------------------------------------------------------------------- /apps/mobile/lib/context/modal.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/context/modal.dart -------------------------------------------------------------------------------- /apps/mobile/lib/context/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/context/theme.dart -------------------------------------------------------------------------------- /apps/mobile/lib/context/toast.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/context/toast.dart -------------------------------------------------------------------------------- /apps/mobile/lib/env.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/env.dart -------------------------------------------------------------------------------- /apps/mobile/lib/error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/error.dart -------------------------------------------------------------------------------- /apps/mobile/lib/extensions/iterable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/extensions/iterable.dart -------------------------------------------------------------------------------- /apps/mobile/lib/extensions/jiffy.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/extensions/jiffy.dart -------------------------------------------------------------------------------- /apps/mobile/lib/extensions/num.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/extensions/num.dart -------------------------------------------------------------------------------- /apps/mobile/lib/firebase_options.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/firebase_options.dart -------------------------------------------------------------------------------- /apps/mobile/lib/graphql/auth_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/graphql/auth_link.dart -------------------------------------------------------------------------------- /apps/mobile/lib/graphql/client.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/graphql/client.dart -------------------------------------------------------------------------------- /apps/mobile/lib/graphql/cookie_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/graphql/cookie_link.dart -------------------------------------------------------------------------------- /apps/mobile/lib/graphql/error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/graphql/error.dart -------------------------------------------------------------------------------- /apps/mobile/lib/graphql/message.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/graphql/message.dart -------------------------------------------------------------------------------- /apps/mobile/lib/graphql/schema.graphql: -------------------------------------------------------------------------------- 1 | ../../../website/schema.graphql -------------------------------------------------------------------------------- /apps/mobile/lib/graphql/serializer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/graphql/serializer.dart -------------------------------------------------------------------------------- /apps/mobile/lib/graphql/widget.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/graphql/widget.dart -------------------------------------------------------------------------------- /apps/mobile/lib/graphql/ws_link.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/graphql/ws_link.dart -------------------------------------------------------------------------------- /apps/mobile/lib/hooks/async_effect.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/hooks/async_effect.dart -------------------------------------------------------------------------------- /apps/mobile/lib/hooks/debounce.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/hooks/debounce.dart -------------------------------------------------------------------------------- /apps/mobile/lib/hooks/editor_floating_fade.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/hooks/editor_floating_fade.dart -------------------------------------------------------------------------------- /apps/mobile/lib/hooks/route_resumed.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/hooks/route_resumed.dart -------------------------------------------------------------------------------- /apps/mobile/lib/hooks/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/hooks/service.dart -------------------------------------------------------------------------------- /apps/mobile/lib/icons/lucide_lab.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/icons/lucide_lab.dart -------------------------------------------------------------------------------- /apps/mobile/lib/icons/lucide_light.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/icons/lucide_light.dart -------------------------------------------------------------------------------- /apps/mobile/lib/icons/typie.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/icons/typie.dart -------------------------------------------------------------------------------- /apps/mobile/lib/instrument.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/instrument.dart -------------------------------------------------------------------------------- /apps/mobile/lib/logger.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/logger.dart -------------------------------------------------------------------------------- /apps/mobile/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/main.dart -------------------------------------------------------------------------------- /apps/mobile/lib/modals/share.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/modals/share.dart -------------------------------------------------------------------------------- /apps/mobile/lib/modals/share_post_query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/modals/share_post_query.graphql -------------------------------------------------------------------------------- /apps/mobile/lib/permission.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/permission.dart -------------------------------------------------------------------------------- /apps/mobile/lib/providers/in_app_purchase.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/providers/in_app_purchase.dart -------------------------------------------------------------------------------- /apps/mobile/lib/routers/app.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/routers/app.dart -------------------------------------------------------------------------------- /apps/mobile/lib/routers/guard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/routers/guard.dart -------------------------------------------------------------------------------- /apps/mobile/lib/routers/observer.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/routers/observer.dart -------------------------------------------------------------------------------- /apps/mobile/lib/routers/shells.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/routers/shells.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/cancel_plan/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/cancel_plan/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/canvas/scope.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/canvas/scope.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/canvas/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/canvas/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/delete_user/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/delete_user/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/anchor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/anchor.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/editor.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/editor.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/limit.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/limit.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/note.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/note.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/page_layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/page_layout.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/schema.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/schema.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/scope.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/scope.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/spellcheck.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/spellcheck.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/editor/values.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/editor/values.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/enroll_plan/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/enroll_plan/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/entity/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/entity/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/home/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/home/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/login/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/login/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/notes/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/notes/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/offline/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/offline/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/profile/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/profile/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/referral/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/referral/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/search/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/search/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/settings/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/settings/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/screens/trash/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/screens/trash/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/service.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/service.dart -------------------------------------------------------------------------------- /apps/mobile/lib/services/auth.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/auth.dart -------------------------------------------------------------------------------- /apps/mobile/lib/services/auth_query.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/auth_query.graphql -------------------------------------------------------------------------------- /apps/mobile/lib/services/blob.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/blob.dart -------------------------------------------------------------------------------- /apps/mobile/lib/services/keyboard.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/keyboard.dart -------------------------------------------------------------------------------- /apps/mobile/lib/services/kv.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/kv.dart -------------------------------------------------------------------------------- /apps/mobile/lib/services/module.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/module.dart -------------------------------------------------------------------------------- /apps/mobile/lib/services/preference.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/preference.dart -------------------------------------------------------------------------------- /apps/mobile/lib/services/state.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/state.dart -------------------------------------------------------------------------------- /apps/mobile/lib/services/static.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/static.dart -------------------------------------------------------------------------------- /apps/mobile/lib/services/theme.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/services/theme.dart -------------------------------------------------------------------------------- /apps/mobile/lib/styles/colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/styles/colors.dart -------------------------------------------------------------------------------- /apps/mobile/lib/styles/semantic_colors.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/styles/semantic_colors.dart -------------------------------------------------------------------------------- /apps/mobile/lib/styles/theme_data.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/styles/theme_data.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/forms/field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/forms/field.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/forms/form.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/forms/form.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/forms/select.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/forms/select.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/forms/slider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/forms/slider.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/forms/switch.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/forms/switch.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/forms/text_field.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/forms/text_field.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/heading.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/heading.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/horizontal_divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/horizontal_divider.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/note.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/note.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/screen.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/screen.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/svg_image.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/svg_image.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/tappable.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/tappable.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/vertical_divider.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/vertical_divider.dart -------------------------------------------------------------------------------- /apps/mobile/lib/widgets/webview.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/lib/widgets/webview.dart -------------------------------------------------------------------------------- /apps/mobile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/package.json -------------------------------------------------------------------------------- /apps/mobile/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/pubspec.lock -------------------------------------------------------------------------------- /apps/mobile/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/pubspec.yaml -------------------------------------------------------------------------------- /apps/mobile/scripts/generate-icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/mobile/scripts/generate-icons.js -------------------------------------------------------------------------------- /apps/website/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/.env -------------------------------------------------------------------------------- /apps/website/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/Dockerfile -------------------------------------------------------------------------------- /apps/website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/package.json -------------------------------------------------------------------------------- /apps/website/panda.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/panda.config.js -------------------------------------------------------------------------------- /apps/website/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/postcss.config.js -------------------------------------------------------------------------------- /apps/website/schema.graphql: -------------------------------------------------------------------------------- 1 | ../api/schema.graphql -------------------------------------------------------------------------------- /apps/website/src/ambient.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/ambient.d.ts -------------------------------------------------------------------------------- /apps/website/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/app.css -------------------------------------------------------------------------------- /apps/website/src/app.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/app.d.ts -------------------------------------------------------------------------------- /apps/website/src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/app.html -------------------------------------------------------------------------------- /apps/website/src/assets/graphics/blocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/graphics/blocks.svg -------------------------------------------------------------------------------- /apps/website/src/assets/graphics/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/graphics/circle.svg -------------------------------------------------------------------------------- /apps/website/src/assets/graphics/editor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/graphics/editor.svg -------------------------------------------------------------------------------- /apps/website/src/assets/graphics/glitters.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/graphics/glitters.svg -------------------------------------------------------------------------------- /apps/website/src/assets/graphics/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/graphics/line.svg -------------------------------------------------------------------------------- /apps/website/src/assets/graphics/share-link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/graphics/share-link.svg -------------------------------------------------------------------------------- /apps/website/src/assets/graphics/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/graphics/timer.svg -------------------------------------------------------------------------------- /apps/website/src/assets/graphics/tracker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/graphics/tracker.png -------------------------------------------------------------------------------- /apps/website/src/assets/graphics/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/graphics/underline.svg -------------------------------------------------------------------------------- /apps/website/src/assets/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/icons/star.svg -------------------------------------------------------------------------------- /apps/website/src/assets/logos/favicon-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/logos/favicon-dark.svg -------------------------------------------------------------------------------- /apps/website/src/assets/logos/favicon-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/logos/favicon-light.svg -------------------------------------------------------------------------------- /apps/website/src/assets/logos/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/assets/logos/logo.svg -------------------------------------------------------------------------------- /apps/website/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/global.d.ts -------------------------------------------------------------------------------- /apps/website/src/hooks.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/hooks.client.ts -------------------------------------------------------------------------------- /apps/website/src/hooks.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/hooks.server.ts -------------------------------------------------------------------------------- /apps/website/src/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/hooks.ts -------------------------------------------------------------------------------- /apps/website/src/icons/bell-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/bell-filled.svg -------------------------------------------------------------------------------- /apps/website/src/icons/bookmark-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/bookmark-filled.svg -------------------------------------------------------------------------------- /apps/website/src/icons/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/exclamation.svg -------------------------------------------------------------------------------- /apps/website/src/icons/folder-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/folder-filled.svg -------------------------------------------------------------------------------- /apps/website/src/icons/folder-open-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/folder-open-filled.svg -------------------------------------------------------------------------------- /apps/website/src/icons/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/google.svg -------------------------------------------------------------------------------- /apps/website/src/icons/horizontal-rule.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/horizontal-rule.svg -------------------------------------------------------------------------------- /apps/website/src/icons/inbox-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/inbox-filled.svg -------------------------------------------------------------------------------- /apps/website/src/icons/kakao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/kakao.svg -------------------------------------------------------------------------------- /apps/website/src/icons/letter-spacing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/letter-spacing.svg -------------------------------------------------------------------------------- /apps/website/src/icons/line-height.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/line-height.svg -------------------------------------------------------------------------------- /apps/website/src/icons/ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/ruby.svg -------------------------------------------------------------------------------- /apps/website/src/icons/search-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/search-filled.svg -------------------------------------------------------------------------------- /apps/website/src/icons/sticky-note-filled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/icons/sticky-note-filled.svg -------------------------------------------------------------------------------- /apps/website/src/lib/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/analytics.ts -------------------------------------------------------------------------------- /apps/website/src/lib/components/Img.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/components/Img.svelte -------------------------------------------------------------------------------- /apps/website/src/lib/components/admin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/components/admin/index.ts -------------------------------------------------------------------------------- /apps/website/src/lib/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/components/index.ts -------------------------------------------------------------------------------- /apps/website/src/lib/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/graphql/index.ts -------------------------------------------------------------------------------- /apps/website/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/index.ts -------------------------------------------------------------------------------- /apps/website/src/lib/polyfills/index.ts: -------------------------------------------------------------------------------- 1 | import './arraybuffer-base64'; 2 | -------------------------------------------------------------------------------- /apps/website/src/lib/utils/blob.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/utils/blob.svelte -------------------------------------------------------------------------------- /apps/website/src/lib/utils/embed.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/utils/embed.svelte -------------------------------------------------------------------------------- /apps/website/src/lib/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/utils/index.ts -------------------------------------------------------------------------------- /apps/website/src/lib/utils/yjs-post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/lib/utils/yjs-post.ts -------------------------------------------------------------------------------- /apps/website/src/routes/+error.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/routes/+error.svelte -------------------------------------------------------------------------------- /apps/website/src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/routes/+layout.svelte -------------------------------------------------------------------------------- /apps/website/src/routes/auth/(index)/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/routes/auth/(index)/+server.ts -------------------------------------------------------------------------------- /apps/website/src/routes/auth/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/routes/auth/+layout.svelte -------------------------------------------------------------------------------- /apps/website/src/routes/auth/email/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/routes/auth/email/+page.svelte -------------------------------------------------------------------------------- /apps/website/src/routes/auth/login/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/routes/auth/login/+page.svelte -------------------------------------------------------------------------------- /apps/website/src/routes/auth/signup/+page.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/src/routes/graphql/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/routes/graphql/+server.ts -------------------------------------------------------------------------------- /apps/website/src/routes/robots.txt/+server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/src/routes/robots.txt/+server.ts -------------------------------------------------------------------------------- /apps/website/src/routes/usersite/wildcard/+layout.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/src/routes/website/(dashboard)/home/+page.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/src/routes/website/_internal/export/pdf/+layout.ts: -------------------------------------------------------------------------------- 1 | export const ssr = false; 2 | -------------------------------------------------------------------------------- /apps/website/src/routes/website/_webview/+layout.ts: -------------------------------------------------------------------------------- 1 | export const ssr = false; 2 | -------------------------------------------------------------------------------- /apps/website/src/routes/website/admin/+page.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/src/routes/website/open/+page.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/website/static/.well-known/assetlinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/static/.well-known/assetlinks.json -------------------------------------------------------------------------------- /apps/website/static/b71915d51b9fe8c9d5b02924b9da6b8f.txt: -------------------------------------------------------------------------------- 1 | b71915d51b9fe8c9d5b02924b9da6b8f 2 | -------------------------------------------------------------------------------- /apps/website/static/icons/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/static/icons/favicon.png -------------------------------------------------------------------------------- /apps/website/static/icons/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/static/icons/favicon.svg -------------------------------------------------------------------------------- /apps/website/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/svelte.config.js -------------------------------------------------------------------------------- /apps/website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/tsconfig.json -------------------------------------------------------------------------------- /apps/website/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/apps/website/vite.config.ts -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/bun.lock -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- 1 | [install] 2 | linker = "isolated" 3 | -------------------------------------------------------------------------------- /crates/fondue/.gitignore: -------------------------------------------------------------------------------- 1 | !out/ 2 | -------------------------------------------------------------------------------- /crates/fondue/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/Cargo.toml -------------------------------------------------------------------------------- /crates/fondue/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/build.rs -------------------------------------------------------------------------------- /crates/fondue/out/fondue.darwin-arm64.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/out/fondue.darwin-arm64.node -------------------------------------------------------------------------------- /crates/fondue/out/fondue.linux-arm64-gnu.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/out/fondue.linux-arm64-gnu.node -------------------------------------------------------------------------------- /crates/fondue/out/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/out/index.d.ts -------------------------------------------------------------------------------- /crates/fondue/out/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/out/index.js -------------------------------------------------------------------------------- /crates/fondue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/package.json -------------------------------------------------------------------------------- /crates/fondue/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/src/lib.rs -------------------------------------------------------------------------------- /crates/fondue/src/wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/src/wrapper.cpp -------------------------------------------------------------------------------- /crates/fondue/src/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/fondue/src/wrapper.h -------------------------------------------------------------------------------- /crates/vermuda-boot/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda-boot/Cargo.toml -------------------------------------------------------------------------------- /crates/vermuda-boot/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda-boot/justfile -------------------------------------------------------------------------------- /crates/vermuda-boot/src/bin/pack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda-boot/src/bin/pack.rs -------------------------------------------------------------------------------- /crates/vermuda-boot/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda-boot/src/main.rs -------------------------------------------------------------------------------- /crates/vermuda-boot/src/rng_protocol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda-boot/src/rng_protocol.rs -------------------------------------------------------------------------------- /crates/vermuda/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/Cargo.toml -------------------------------------------------------------------------------- /crates/vermuda/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/config.toml -------------------------------------------------------------------------------- /crates/vermuda/config.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/config.toml.example -------------------------------------------------------------------------------- /crates/vermuda/entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/entitlements.plist -------------------------------------------------------------------------------- /crates/vermuda/justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/justfile -------------------------------------------------------------------------------- /crates/vermuda/src/app_delegate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/app_delegate.rs -------------------------------------------------------------------------------- /crates/vermuda/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/config.rs -------------------------------------------------------------------------------- /crates/vermuda/src/disk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/disk.rs -------------------------------------------------------------------------------- /crates/vermuda/src/display.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/display.rs -------------------------------------------------------------------------------- /crates/vermuda/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/error.rs -------------------------------------------------------------------------------- /crates/vermuda/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/main.rs -------------------------------------------------------------------------------- /crates/vermuda/src/main_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/main_thread.rs -------------------------------------------------------------------------------- /crates/vermuda/src/vm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/vm.rs -------------------------------------------------------------------------------- /crates/vermuda/src/vm_delegate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/vm_delegate.rs -------------------------------------------------------------------------------- /crates/vermuda/src/vmnet.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/vmnet.rs -------------------------------------------------------------------------------- /crates/vermuda/src/window_delegate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/crates/vermuda/src/window_delegate.rs -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/cspell.json -------------------------------------------------------------------------------- /cspell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/cspell.txt -------------------------------------------------------------------------------- /docs/CLA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/docs/CLA -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/docs/CODE_OF_CONDUCT -------------------------------------------------------------------------------- /doppler.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/doppler.yaml -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/eslint.config.js -------------------------------------------------------------------------------- /hooks/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/hooks/edit.js -------------------------------------------------------------------------------- /infrastructure/machines/factory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/factory.yaml -------------------------------------------------------------------------------- /infrastructure/machines/patches/axolotl.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/patches/axolotl.yaml -------------------------------------------------------------------------------- /infrastructure/machines/patches/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/patches/base.yaml -------------------------------------------------------------------------------- /infrastructure/machines/patches/beaver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/patches/beaver.yaml -------------------------------------------------------------------------------- /infrastructure/machines/patches/capybara.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/patches/capybara.yaml -------------------------------------------------------------------------------- /infrastructure/machines/patches/ferret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/patches/ferret.yaml -------------------------------------------------------------------------------- /infrastructure/machines/patches/meerkat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/patches/meerkat.yaml -------------------------------------------------------------------------------- /infrastructure/machines/patches/quokka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/patches/quokka.yaml -------------------------------------------------------------------------------- /infrastructure/machines/patches/wallaby.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/patches/wallaby.yaml -------------------------------------------------------------------------------- /infrastructure/machines/run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/run.ts -------------------------------------------------------------------------------- /infrastructure/machines/secrets.enc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/machines/secrets.enc.yaml -------------------------------------------------------------------------------- /infrastructure/misc/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/misc/frr.conf -------------------------------------------------------------------------------- /infrastructure/terraform/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/main.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules/ecr/iam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules/ecr/iam.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules/iam/roles.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules/iam/roles.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules/iam/ssm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules/iam/ssm.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules/iam/users.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules/iam/users.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules/s3/app.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules/s3/app.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules/s3/cdn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules/s3/cdn.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules/s3/misc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules/s3/misc.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules/s3/uploads.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules/s3/uploads.tf -------------------------------------------------------------------------------- /infrastructure/terraform/modules/ses/dkim.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/infrastructure/terraform/modules/ses/dkim.tf -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/lefthook.yml -------------------------------------------------------------------------------- /mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/mise.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/package.json -------------------------------------------------------------------------------- /packages/adapter-node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/adapter-node/package.json -------------------------------------------------------------------------------- /packages/adapter-node/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/adapter-node/src/index.d.ts -------------------------------------------------------------------------------- /packages/adapter-node/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/adapter-node/src/index.js -------------------------------------------------------------------------------- /packages/adapter-node/src/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/adapter-node/src/serve.js -------------------------------------------------------------------------------- /packages/adapter-node/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@typie/tsconfig"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/lib/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/package.json -------------------------------------------------------------------------------- /packages/lib/src/compression.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/compression.ts -------------------------------------------------------------------------------- /packages/lib/src/dayjs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/dayjs/index.ts -------------------------------------------------------------------------------- /packages/lib/src/dayjs/plugins/format-as.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/dayjs/plugins/format-as.ts -------------------------------------------------------------------------------- /packages/lib/src/dayjs/plugins/kst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/dayjs/plugins/kst.ts -------------------------------------------------------------------------------- /packages/lib/src/hono.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/hono.ts -------------------------------------------------------------------------------- /packages/lib/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/index.ts -------------------------------------------------------------------------------- /packages/lib/src/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/logging.ts -------------------------------------------------------------------------------- /packages/lib/src/postcss/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/postcss/index.js -------------------------------------------------------------------------------- /packages/lib/src/svelte/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/svelte/hooks.ts -------------------------------------------------------------------------------- /packages/lib/src/svelte/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/svelte/index.ts -------------------------------------------------------------------------------- /packages/lib/src/svelte/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/svelte/sitemap.ts -------------------------------------------------------------------------------- /packages/lib/src/vite/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/vite/index.d.ts -------------------------------------------------------------------------------- /packages/lib/src/vite/index.js: -------------------------------------------------------------------------------- 1 | export * from './plugins/svg.js'; 2 | -------------------------------------------------------------------------------- /packages/lib/src/vite/plugins/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lib/src/vite/plugins/svg.js -------------------------------------------------------------------------------- /packages/lib/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@typie/tsconfig"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/lintconfig/eslint-ignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lintconfig/eslint-ignore.js -------------------------------------------------------------------------------- /packages/lintconfig/eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lintconfig/eslint.js -------------------------------------------------------------------------------- /packages/lintconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lintconfig/package.json -------------------------------------------------------------------------------- /packages/lintconfig/prettier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/lintconfig/prettier.js -------------------------------------------------------------------------------- /packages/sark/bin/sark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/bin/sark.js -------------------------------------------------------------------------------- /packages/sark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/package.json -------------------------------------------------------------------------------- /packages/sark/src/codegen/artifact/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/artifact/index.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/ast.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/cli.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/codegen/writer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/codegen/writer.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/const.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/parser/arguments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/parser/arguments.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/parser/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/parser/selection.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/parser/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/parser/variables.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/utils.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/vite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/vite/index.ts -------------------------------------------------------------------------------- /packages/sark/src/codegen/vite/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/codegen/vite/transform.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/cache/cache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/cache/cache.test.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/cache/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/cache/cache.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/cache/normalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/cache/normalize.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/cache/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/cache/operations.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/cache/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/cache/types.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/cache/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/cache/utils.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/client/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/client/client.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/client/index.ts: -------------------------------------------------------------------------------- 1 | export * from './client'; 2 | -------------------------------------------------------------------------------- /packages/sark/src/runtime/client/internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/client/internal.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/exchanges/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/exchanges/cache.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/exchanges/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/exchanges/error.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/exchanges/fetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/exchanges/fetch.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/exchanges/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/exchanges/index.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/exchanges/sse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/exchanges/sse.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/exchanges/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/exchanges/utils.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/exchanges/ws.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/exchanges/ws.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/index.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/internal/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/internal/cache.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/internal/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/internal/error.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/internal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/internal/index.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/internal/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/internal/load.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/internal/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/internal/types.ts -------------------------------------------------------------------------------- /packages/sark/src/runtime/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/runtime/types.ts -------------------------------------------------------------------------------- /packages/sark/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/src/types.ts -------------------------------------------------------------------------------- /packages/sark/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@typie/tsconfig"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/sark/tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/tsup.config.ts -------------------------------------------------------------------------------- /packages/sark/vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/sark/vitest.config.ts -------------------------------------------------------------------------------- /packages/styled-system/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/package.json -------------------------------------------------------------------------------- /packages/styled-system/panda.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/panda.config.ts -------------------------------------------------------------------------------- /packages/styled-system/src/aspect-ratios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/aspect-ratios.ts -------------------------------------------------------------------------------- /packages/styled-system/src/blurs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/blurs.ts -------------------------------------------------------------------------------- /packages/styled-system/src/border-widths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/border-widths.ts -------------------------------------------------------------------------------- /packages/styled-system/src/breakpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/breakpoints.ts -------------------------------------------------------------------------------- /packages/styled-system/src/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/colors.ts -------------------------------------------------------------------------------- /packages/styled-system/src/conditions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/conditions.ts -------------------------------------------------------------------------------- /packages/styled-system/src/font-sizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/font-sizes.ts -------------------------------------------------------------------------------- /packages/styled-system/src/font-weights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/font-weights.ts -------------------------------------------------------------------------------- /packages/styled-system/src/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/fonts.ts -------------------------------------------------------------------------------- /packages/styled-system/src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/global.ts -------------------------------------------------------------------------------- /packages/styled-system/src/gradients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/gradients.ts -------------------------------------------------------------------------------- /packages/styled-system/src/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/helpers.ts -------------------------------------------------------------------------------- /packages/styled-system/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/index.ts -------------------------------------------------------------------------------- /packages/styled-system/src/keyframes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/keyframes.ts -------------------------------------------------------------------------------- /packages/styled-system/src/line-heights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/line-heights.ts -------------------------------------------------------------------------------- /packages/styled-system/src/opacity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/opacity.ts -------------------------------------------------------------------------------- /packages/styled-system/src/radii.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/radii.ts -------------------------------------------------------------------------------- /packages/styled-system/src/shadows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/shadows.ts -------------------------------------------------------------------------------- /packages/styled-system/src/sizes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/sizes.ts -------------------------------------------------------------------------------- /packages/styled-system/src/spacing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/spacing.ts -------------------------------------------------------------------------------- /packages/styled-system/src/tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/tokens.ts -------------------------------------------------------------------------------- /packages/styled-system/src/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/utilities.ts -------------------------------------------------------------------------------- /packages/styled-system/src/z-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/styled-system/src/z-index.ts -------------------------------------------------------------------------------- /packages/styled-system/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["@typie/tsconfig"] 3 | } 4 | -------------------------------------------------------------------------------- /packages/tsconfig/index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/tsconfig/package.json -------------------------------------------------------------------------------- /packages/tsconfig/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/tsconfig/tsconfig.json -------------------------------------------------------------------------------- /packages/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/package.json -------------------------------------------------------------------------------- /packages/ui/src/actions/autosize.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/actions/autosize.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/actions/floating.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/actions/floating.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/actions/focus-trap.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/actions/focus-trap.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/actions/hover.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/actions/hover.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/actions/index.ts -------------------------------------------------------------------------------- /packages/ui/src/actions/portal.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/actions/portal.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/actions/scroll-lock.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/actions/scroll-lock.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/actions/tooltip.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/actions/tooltip.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/anchor/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/anchor/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/anchor/utils.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/CanvasEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/CanvasEditor.svelte -------------------------------------------------------------------------------- /packages/ui/src/canvas/class.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/class.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/clipboard.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/const.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/cursor-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/cursor-manager.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/environment.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/index.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/arrow.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/brush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/brush.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/ellipse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/ellipse.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/index.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/line.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/move.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/pan.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/pan.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/pinch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/pinch.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/resize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/resize.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/operations/select.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/operations/select.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/rough.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/rough.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/scene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/scene.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/selection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/selection.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/shapes/arrow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/shapes/arrow.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/shapes/brush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/shapes/brush.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/shapes/ellipse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/shapes/ellipse.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/shapes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/shapes/index.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/shapes/line.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/shapes/line.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/shapes/rectangle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/shapes/rectangle.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/shapes/shape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/shapes/shape.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/shapes/stickynote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/shapes/stickynote.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/shapes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/shapes/types.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/sync-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/sync-manager.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/types.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/utils.ts -------------------------------------------------------------------------------- /packages/ui/src/canvas/values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/canvas/values.ts -------------------------------------------------------------------------------- /packages/ui/src/components/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Button.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Checkbox.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Checkbox.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Helmet.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Helmet.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Icon.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Icon.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Img.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Img.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Menu.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Menu.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/MenuItem.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/MenuItem.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Modal.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Modal.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Popover.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Popover.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/RingSpinner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/RingSpinner.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Select.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Select.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Slider.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Slider.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Switch.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Switch.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/TextInput.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/TextInput.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/Tooltip.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/Tooltip.svelte -------------------------------------------------------------------------------- /packages/ui/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/components/index.ts -------------------------------------------------------------------------------- /packages/ui/src/constants/admin.ts: -------------------------------------------------------------------------------- 1 | export const ADMIN_ITEMS_PER_PAGE = 20; 2 | -------------------------------------------------------------------------------- /packages/ui/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/constants/index.ts -------------------------------------------------------------------------------- /packages/ui/src/constants/plan-features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/constants/plan-features.ts -------------------------------------------------------------------------------- /packages/ui/src/context/app.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/context/app.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/context/index.ts -------------------------------------------------------------------------------- /packages/ui/src/context/theme.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/context/theme.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/effects/Grain.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/effects/Grain.svelte -------------------------------------------------------------------------------- /packages/ui/src/effects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/effects/index.ts -------------------------------------------------------------------------------- /packages/ui/src/form/form.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/form/form.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/form/index.ts: -------------------------------------------------------------------------------- 1 | export * from './form.svelte'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/global.d.ts -------------------------------------------------------------------------------- /packages/ui/src/notification/Provider.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/notification/Provider.svelte -------------------------------------------------------------------------------- /packages/ui/src/notification/dialog/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/notification/dialog/store.ts -------------------------------------------------------------------------------- /packages/ui/src/notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/notification/index.ts -------------------------------------------------------------------------------- /packages/ui/src/notification/tip/Item.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/notification/tip/Item.svelte -------------------------------------------------------------------------------- /packages/ui/src/notification/tip/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/notification/tip/index.ts -------------------------------------------------------------------------------- /packages/ui/src/notification/toast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/notification/toast/index.ts -------------------------------------------------------------------------------- /packages/ui/src/notification/updater/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/notification/updater/index.ts -------------------------------------------------------------------------------- /packages/ui/src/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/state/index.ts -------------------------------------------------------------------------------- /packages/ui/src/state/local-store.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/state/local-store.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/state/query-string.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/state/query-string.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/state/session-store.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/state/session-store.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/components/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/extensions/behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/extensions/behavior.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/extensions/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/extensions/command.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/extensions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/extensions/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/extensions/node-id.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/extensions/node-id.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/extensions/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/extensions/page.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/extensions/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/extensions/search.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/lib/NodeView.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/lib/NodeView.svelte -------------------------------------------------------------------------------- /packages/ui/src/tiptap/lib/context.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/lib/context.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/lib/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/lib/create.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/lib/html.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/lib/html.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/lib/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/lib/node-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/lib/node-utils.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/lib/renderer.svelte.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/lib/renderer.svelte.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/lib/utils.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/marks/bold.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/marks/bold.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/marks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/marks/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/marks/italic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/marks/italic.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/marks/link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/marks/link.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/marks/ruby.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/marks/ruby.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/marks/strike.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/marks/strike.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/marks/text-style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/marks/text-style.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/marks/underline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/marks/underline.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/menus/floating/index.ts: -------------------------------------------------------------------------------- 1 | export { FloatingMenu } from './extension.svelte'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/tiptap/menus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/menus/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/menus/slash/index.ts: -------------------------------------------------------------------------------- 1 | export { SlashMenu } from './extension.svelte'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/tiptap/menus/slash/items.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/menus/slash/items.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/menus/slash/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/menus/slash/types.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/node-views/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/node-views/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/nodes/body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/nodes/body.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/nodes/bullet-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/nodes/bullet-list.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/nodes/doc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/nodes/doc.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/nodes/hard-break.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/nodes/hard-break.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/nodes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/nodes/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/nodes/list-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/nodes/list-item.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/nodes/ordered-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/nodes/ordered-list.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/nodes/paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/nodes/paragraph.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/nodes/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/nodes/text.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/schema.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/text-styles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/text-styles/index.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/types.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/values-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/values-base.ts -------------------------------------------------------------------------------- /packages/ui/src/tiptap/values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/tiptap/values.ts -------------------------------------------------------------------------------- /packages/ui/src/transitions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './typewriter'; 2 | -------------------------------------------------------------------------------- /packages/ui/src/transitions/typewriter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/transitions/typewriter.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/auth.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/device.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/device.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/dnd-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/dnd-handler.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/download.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/drag-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/drag-scroll.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/escape-stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/escape-stack.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/flip-animation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/flip-animation.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/index.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/json.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/note-colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/note-colors.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/number.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/page-layout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/page-layout.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/ref.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/remeda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/remeda.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/text.ts -------------------------------------------------------------------------------- /packages/ui/src/utils/types.ts: -------------------------------------------------------------------------------- 1 | export type Awaitable = T | Promise; 2 | -------------------------------------------------------------------------------- /packages/ui/src/utils/unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/src/utils/unit.ts -------------------------------------------------------------------------------- /packages/ui/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/styles/index.css -------------------------------------------------------------------------------- /packages/ui/styles/prose.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/styles/prose.css -------------------------------------------------------------------------------- /packages/ui/styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/styles/theme.css -------------------------------------------------------------------------------- /packages/ui/styles/view-transition.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/styles/view-transition.css -------------------------------------------------------------------------------- /packages/ui/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/svelte.config.js -------------------------------------------------------------------------------- /packages/ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/packages/ui/tsconfig.json -------------------------------------------------------------------------------- /patches/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | export { default } from '@typie/lintconfig/prettier'; 2 | -------------------------------------------------------------------------------- /rustfmt.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/rustfmt.toml -------------------------------------------------------------------------------- /syncpack.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/syncpack.config.cjs -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/turbo.json -------------------------------------------------------------------------------- /vendor/sharp-al2023.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/vendor/sharp-al2023.tar.xz -------------------------------------------------------------------------------- /vendor/sharp-debian.tar.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/penxle/typie/HEAD/vendor/sharp-debian.tar.xz --------------------------------------------------------------------------------