From 2710b00a1cd5463927bb07b3e79b42845d05f0f3 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sun, 25 May 2025 15:11:52 +0200 Subject: [PATCH 1/6] - add remember to skip creation of new `MarkdownComponentModel` if no content changed - remove return (compose shall not have return values) --- .../markdown/compose/MarkdownExtension.kt | 20 ++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/compose/MarkdownExtension.kt b/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/compose/MarkdownExtension.kt index d2643b1..63f1e14 100644 --- a/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/compose/MarkdownExtension.kt +++ b/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/compose/MarkdownExtension.kt @@ -3,6 +3,7 @@ package com.mikepenz.markdown.compose import androidx.compose.foundation.layout.Spacer import androidx.compose.foundation.layout.height import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember import androidx.compose.ui.Modifier import com.mikepenz.markdown.compose.components.MarkdownComponentModel import com.mikepenz.markdown.compose.components.MarkdownComponents @@ -47,12 +48,15 @@ fun MarkdownElement( content: String, includeSpacer: Boolean = true, skipLinkDefinition: Boolean = true, -): Boolean { - val model = MarkdownComponentModel( - content = content, - node = node, - typography = LocalMarkdownTypography.current, - ) +) { + val typography = LocalMarkdownTypography.current + val model = remember(node, content, typography) { + MarkdownComponentModel( + content = content, + node = node, + typography = typography, + ) + } var handled = true if (includeSpacer) Spacer(Modifier.height(LocalMarkdownPadding.current.block)) when (node.type) { @@ -90,6 +94,4 @@ fun MarkdownElement( MarkdownElement(child, components, content, includeSpacer, skipLinkDefinition) } } - - return handled -} \ No newline at end of file +} From f45021667e08ed85c52c20558c9441dec17df5c4 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sun, 25 May 2025 15:12:51 +0200 Subject: [PATCH 2/6] - slightly optimize LazyMarkdownSuccess --- .../mikepenz/markdown/compose/LazyMarkdown.kt | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/compose/LazyMarkdown.kt b/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/compose/LazyMarkdown.kt index 05b33cf..c9bf9c6 100644 --- a/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/compose/LazyMarkdown.kt +++ b/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/compose/LazyMarkdown.kt @@ -4,6 +4,7 @@ import androidx.compose.foundation.layout.PaddingValues import androidx.compose.foundation.lazy.LazyColumn import androidx.compose.foundation.lazy.items import androidx.compose.runtime.Composable +import androidx.compose.runtime.remember import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp import com.mikepenz.markdown.compose.components.MarkdownComponents @@ -12,6 +13,10 @@ import com.mikepenz.markdown.model.State /** * Renders the parsed markdown content in a [LazyColumn]. * + * This function uses Compose's [LazyColumn] to implement virtualization, which means + * only the visible portions of the document are rendered, improving performance for + * large documents. + * * @param state The success markdown state. * @param components The MarkdownComponents instance containing the components to use. * @param modifier The modifier to be applied to the container. @@ -24,12 +29,19 @@ fun LazyMarkdownSuccess( modifier: Modifier = Modifier, contentPadding: PaddingValues = PaddingValues(0.dp), ) { + // Extract nodes for rendering + val nodes = remember(state.node) { state.node.children } + LazyColumn( modifier = modifier, contentPadding = contentPadding, ) { - items(state.node.children) { node -> + items( + items = nodes, + // Use the node's start offset as a key for stable item identity + key = { node -> node.startOffset } + ) { node -> MarkdownElement(node, components, state.content, skipLinkDefinition = state.linksLookedUp) } } -} \ No newline at end of file +} From e4e81aacbeaca2d71f620593966c094ce6b90abc Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sun, 25 May 2025 15:37:01 +0200 Subject: [PATCH 3/6] - add `rememberMarkdownState` accepting a suspending block to load the markdown data (e.g. from resource files, ... - add progress indicator to sample --- .../mikepenz/markdown/model/MarkdownState.kt | 134 +++++++++++++++--- .../mikepenz/markdown/sample/MarkDownPage.kt | 24 ++-- 2 files changed, 131 insertions(+), 27 deletions(-) diff --git a/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/model/MarkdownState.kt b/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/model/MarkdownState.kt index 46dc839..f8b135d 100644 --- a/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/model/MarkdownState.kt +++ b/multiplatform-markdown-renderer/src/commonMain/kotlin/com/mikepenz/markdown/model/MarkdownState.kt @@ -26,7 +26,8 @@ import org.intellij.markdown.parser.MarkdownParser * @param flavour The [MarkdownFlavourDescriptor] to use for parsing. * @param parser The [MarkdownParser] to use for parsing. * @param referenceLinkHandler The [ReferenceLinkHandler] to use for storing links. - * @param immediate Whether to parse the content immediately or not. (WARNING: This is not advices, as it will block the composition!) + * @param immediate Whether to parse the content immediately or not. (WARNING: This is not advised, as it will block the composition!) + * @return A [MarkdownState] instance that will parse the content and emit the result to its [MarkdownState.state] flow. */ @Composable fun rememberMarkdownState( @@ -37,42 +38,141 @@ fun rememberMarkdownState( referenceLinkHandler: ReferenceLinkHandler = ReferenceLinkHandlerImpl(), immediate: Boolean = LocalInspectionMode.current, ): MarkdownState { - val input = Input( - content = content, - lookupLinks = lookupLinks, - flavour = flavour, - parser = parser, - referenceLinkHandler = referenceLinkHandler, - ) - val state = remember(input) { MarkdownState(input) } + val input = remember(content, lookupLinks, flavour, parser, referenceLinkHandler) { + Input( + content = content, + lookupLinks = lookupLinks, + flavour = flavour, + parser = parser, + referenceLinkHandler = referenceLinkHandler, + ) + } + val state = remember(input) { MarkdownStateImpl(input) } + if (immediate) { + // In immediate mode, parse synchronously but be aware this blocks the UI thread state.parseBlocking() } else { + // Otherwise, parse asynchronously in a coroutine LaunchedEffect(state) { state.parse() } } + return state } /** - * A [MarkdownState] that that executes the parsing of the markdown content with the [MarkdownParser] asynchronously. + * A [MarkdownState] that executes the parsing of the markdown content with the [MarkdownParser] asynchronously. + * This version accepts a suspend function block that returns the markdown content, allowing for dynamic loading. + * + * @param block A suspend function that returns the markdown content to parse. + * @param lookupLinks Whether to lookup links in the parsed tree or not. + * @param flavour The [MarkdownFlavourDescriptor] to use for parsing. + * @param parser The [MarkdownParser] to use for parsing. + * @param referenceLinkHandler The [ReferenceLinkHandler] to use for storing links. + * @return A [MarkdownState] instance that will parse the content and emit the result to its [MarkdownState.state] flow. + */ +@Composable +fun rememberMarkdownState( + lookupLinks: Boolean = true, + flavour: MarkdownFlavourDescriptor = GFMFlavourDescriptor(), + parser: MarkdownParser = MarkdownParser(flavour), + referenceLinkHandler: ReferenceLinkHandler = ReferenceLinkHandlerImpl(), + block: suspend () -> String, +): MarkdownState { + // Create an initial state with empty content + val initialInput = remember(lookupLinks, flavour, parser, referenceLinkHandler) { + Input( + content = "", + lookupLinks = lookupLinks, + flavour = flavour, + parser = parser, + referenceLinkHandler = referenceLinkHandler, + ) + } + val state = remember(block, initialInput) { + MarkdownStateImpl(initialInput) + } + + // Launch a coroutine to fetch the content and update the state + LaunchedEffect(state) { + try { + val content = block() + val input = Input( + content = content, + lookupLinks = lookupLinks, + flavour = flavour, + parser = parser, + referenceLinkHandler = referenceLinkHandler, + ) + state.updateInput(input) + state.parse() + } catch (e: Throwable) { + state.setError(e) + } + } + + return state +} + +/** + * Interface for a state that handles the parsing of markdown content with the [MarkdownParser]. + */ +@Stable +interface MarkdownState { + /** The current state of the markdown parsing */ + val state: StateFlow + + /** The links found in the markdown content */ + val links: StateFlow> + + /** + * Parses the markdown content asynchronously using the Default dispatcher. + * When a result is available it will be emitted to the [state] flow. + */ + suspend fun parse(): State +} + +/** + * Implementation of [MarkdownState] that executes the parsing of the markdown content with the [MarkdownParser] asynchronously. */ @Stable -class MarkdownState( - val input: Input, -) { +internal class MarkdownStateImpl( + private var input: Input, +) : MarkdownState { private val stateFlow: MutableStateFlow = MutableStateFlow(State.Loading(input.referenceLinkHandler)) - val state: StateFlow = stateFlow.asStateFlow() + override val state: StateFlow = stateFlow.asStateFlow() private val linkStateFlow: MutableStateFlow> = MutableStateFlow(emptyMap()) - val links: StateFlow> = linkStateFlow.asStateFlow() + override val links: StateFlow> = linkStateFlow.asStateFlow() + + /** + * Updates the input for this markdown state. + * This is used when loading content dynamically. + * + * @param newInput The new input to use for parsing. + */ + internal fun updateInput(newInput: Input) { + input = newInput + stateFlow.value = State.Loading(input.referenceLinkHandler) + } + + /** + * Sets an error state for this markdown state. + * This is used when an error occurs during dynamic content loading. + * + * @param error The error that occurred. + */ + internal fun setError(error: Throwable) { + stateFlow.value = State.Error(error, input.referenceLinkHandler) + } /** * Parses the markdown content asynchronously using the Default dispatcher. * When a result is available it will be emitted to the [state] flow. */ - suspend fun parse(): State = withContext(Dispatchers.Default) { + override suspend fun parse(): State = withContext(Dispatchers.Default) { parseBlocking() } @@ -117,7 +217,7 @@ fun parseMarkdownFlow( referenceLinkHandler: ReferenceLinkHandler = ReferenceLinkHandlerImpl(), ) = flow { emit(State.Loading(referenceLinkHandler)) - val markdownState = MarkdownState( + val markdownState = MarkdownStateImpl( Input( content = content, lookupLinks = lookupLinks, diff --git a/sample/shared/src/commonMain/kotlin/com/mikepenz/markdown/sample/MarkDownPage.kt b/sample/shared/src/commonMain/kotlin/com/mikepenz/markdown/sample/MarkDownPage.kt index 3b738ae..4ab7d98 100644 --- a/sample/shared/src/commonMain/kotlin/com/mikepenz/markdown/sample/MarkDownPage.kt +++ b/sample/shared/src/commonMain/kotlin/com/mikepenz/markdown/sample/MarkDownPage.kt @@ -1,18 +1,16 @@ package com.mikepenz.markdown.sample import androidx.compose.foundation.isSystemInDarkTheme +import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.padding import androidx.compose.foundation.rememberScrollState import androidx.compose.foundation.text.selection.SelectionContainer import androidx.compose.foundation.verticalScroll +import androidx.compose.material3.CircularProgressIndicator import androidx.compose.runtime.Composable -import androidx.compose.runtime.LaunchedEffect -import androidx.compose.runtime.getValue -import androidx.compose.runtime.mutableStateOf import androidx.compose.runtime.remember -import androidx.compose.runtime.saveable.rememberSaveable -import androidx.compose.runtime.setValue +import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.unit.dp import com.mikepenz.markdown.coil3.Coil3ImageTransformerImpl @@ -39,14 +37,12 @@ internal fun MarkDownPage(modifier: Modifier = Modifier) { val highlightsBuilder = remember(isDarkTheme) { Highlights.Builder().theme(SyntaxThemes.atom(darkMode = isDarkTheme)) } - var markdown by rememberSaveable(Unit) { mutableStateOf("") } - LaunchedEffect(Unit) { - markdown = Res.readBytes("files/sample.md").decodeToString() - } SelectionContainer { Markdown( - markdownState = rememberMarkdownState(markdown), + markdownState = rememberMarkdownState { + Res.readBytes("files/sample.md").decodeToString() + }, components = markdownComponents( codeBlock = { MarkdownHighlightedCodeBlock( @@ -74,6 +70,14 @@ internal fun MarkDownPage(modifier: Modifier = Modifier) { ) } }, + loading = { + Box( + modifier = modifier.fillMaxSize(), + contentAlignment = Alignment.Center + ) { + CircularProgressIndicator() + } + }, modifier = modifier .fillMaxSize() .verticalScroll(rememberScrollState()) From 1cdeba812e92b112bc2ea653bb45ca82b59630da Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sun, 25 May 2025 15:41:07 +0200 Subject: [PATCH 4/6] - update *.api --- .../multiplatform-markdown-renderer.api | 14 ++++----- .../jvm/multiplatform-markdown-renderer.api | 14 ++++----- .../multiplatform-markdown-renderer.klib.api | 29 +++++++++---------- 3 files changed, 25 insertions(+), 32 deletions(-) diff --git a/multiplatform-markdown-renderer/api/android/multiplatform-markdown-renderer.api b/multiplatform-markdown-renderer/api/android/multiplatform-markdown-renderer.api index 3585461..87e0c05 100644 --- a/multiplatform-markdown-renderer/api/android/multiplatform-markdown-renderer.api +++ b/multiplatform-markdown-renderer/api/android/multiplatform-markdown-renderer.api @@ -63,7 +63,7 @@ public final class com/mikepenz/markdown/compose/LazyMarkdownKt { } public final class com/mikepenz/markdown/compose/MarkdownExtensionKt { - public static final fun MarkdownElement (Lorg/intellij/markdown/ast/ASTNode;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Ljava/lang/String;ZZLandroidx/compose/runtime/Composer;II)Z + public static final fun MarkdownElement (Lorg/intellij/markdown/ast/ASTNode;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Ljava/lang/String;ZZLandroidx/compose/runtime/Composer;II)V } public final class com/mikepenz/markdown/compose/MarkdownKt { @@ -575,19 +575,17 @@ public final class com/mikepenz/markdown/model/MarkdownPaddingKt { public static final fun markdownPadding-hBH8OFI (FFFFLandroidx/compose/ui/unit/Dp;FLandroidx/compose/foundation/layout/PaddingValues;Landroidx/compose/foundation/layout/PaddingValues;Landroidx/compose/foundation/layout/PaddingValues;Landroidx/compose/foundation/layout/PaddingValues$Absolute;Landroidx/compose/runtime/Composer;II)Lcom/mikepenz/markdown/model/MarkdownPadding; } -public final class com/mikepenz/markdown/model/MarkdownState { - public static final field $stable I - public fun (Lcom/mikepenz/markdown/model/Input;)V - public final fun getInput ()Lcom/mikepenz/markdown/model/Input; - public final fun getLinks ()Lkotlinx/coroutines/flow/StateFlow; - public final fun getState ()Lkotlinx/coroutines/flow/StateFlow; - public final fun parse (Lkotlin/coroutines/Continuation;)Ljava/lang/Object; +public abstract interface class com/mikepenz/markdown/model/MarkdownState { + public abstract fun getLinks ()Lkotlinx/coroutines/flow/StateFlow; + public abstract fun getState ()Lkotlinx/coroutines/flow/StateFlow; + public abstract fun parse (Lkotlin/coroutines/Continuation;)Ljava/lang/Object; } public final class com/mikepenz/markdown/model/MarkdownStateKt { public static final fun parseMarkdownFlow (Ljava/lang/String;ZLorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;)Lkotlinx/coroutines/flow/Flow; public static synthetic fun parseMarkdownFlow$default (Ljava/lang/String;ZLorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;ILjava/lang/Object;)Lkotlinx/coroutines/flow/Flow; public static final fun rememberMarkdownState (Ljava/lang/String;ZLorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;ZLandroidx/compose/runtime/Composer;II)Lcom/mikepenz/markdown/model/MarkdownState; + public static final fun rememberMarkdownState (ZLorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)Lcom/mikepenz/markdown/model/MarkdownState; } public abstract interface class com/mikepenz/markdown/model/MarkdownTypography { diff --git a/multiplatform-markdown-renderer/api/jvm/multiplatform-markdown-renderer.api b/multiplatform-markdown-renderer/api/jvm/multiplatform-markdown-renderer.api index 7800f46..38289a4 100644 --- a/multiplatform-markdown-renderer/api/jvm/multiplatform-markdown-renderer.api +++ b/multiplatform-markdown-renderer/api/jvm/multiplatform-markdown-renderer.api @@ -63,7 +63,7 @@ public final class com/mikepenz/markdown/compose/LazyMarkdownKt { } public final class com/mikepenz/markdown/compose/MarkdownExtensionKt { - public static final fun MarkdownElement (Lorg/intellij/markdown/ast/ASTNode;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Ljava/lang/String;ZZLandroidx/compose/runtime/Composer;II)Z + public static final fun MarkdownElement (Lorg/intellij/markdown/ast/ASTNode;Lcom/mikepenz/markdown/compose/components/MarkdownComponents;Ljava/lang/String;ZZLandroidx/compose/runtime/Composer;II)V } public final class com/mikepenz/markdown/compose/MarkdownKt { @@ -575,19 +575,17 @@ public final class com/mikepenz/markdown/model/MarkdownPaddingKt { public static final fun markdownPadding-hBH8OFI (FFFFLandroidx/compose/ui/unit/Dp;FLandroidx/compose/foundation/layout/PaddingValues;Landroidx/compose/foundation/layout/PaddingValues;Landroidx/compose/foundation/layout/PaddingValues;Landroidx/compose/foundation/layout/PaddingValues$Absolute;Landroidx/compose/runtime/Composer;II)Lcom/mikepenz/markdown/model/MarkdownPadding; } -public final class com/mikepenz/markdown/model/MarkdownState { - public static final field $stable I - public fun (Lcom/mikepenz/markdown/model/Input;)V - public final fun getInput ()Lcom/mikepenz/markdown/model/Input; - public final fun getLinks ()Lkotlinx/coroutines/flow/StateFlow; - public final fun getState ()Lkotlinx/coroutines/flow/StateFlow; - public final fun parse (Lkotlin/coroutines/Continuation;)Ljava/lang/Object; +public abstract interface class com/mikepenz/markdown/model/MarkdownState { + public abstract fun getLinks ()Lkotlinx/coroutines/flow/StateFlow; + public abstract fun getState ()Lkotlinx/coroutines/flow/StateFlow; + public abstract fun parse (Lkotlin/coroutines/Continuation;)Ljava/lang/Object; } public final class com/mikepenz/markdown/model/MarkdownStateKt { public static final fun parseMarkdownFlow (Ljava/lang/String;ZLorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;)Lkotlinx/coroutines/flow/Flow; public static synthetic fun parseMarkdownFlow$default (Ljava/lang/String;ZLorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;ILjava/lang/Object;)Lkotlinx/coroutines/flow/Flow; public static final fun rememberMarkdownState (Ljava/lang/String;ZLorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;ZLandroidx/compose/runtime/Composer;II)Lcom/mikepenz/markdown/model/MarkdownState; + public static final fun rememberMarkdownState (ZLorg/intellij/markdown/flavours/MarkdownFlavourDescriptor;Lorg/intellij/markdown/parser/MarkdownParser;Lcom/mikepenz/markdown/model/ReferenceLinkHandler;Lkotlin/jvm/functions/Function1;Landroidx/compose/runtime/Composer;II)Lcom/mikepenz/markdown/model/MarkdownState; } public abstract interface class com/mikepenz/markdown/model/MarkdownTypography { diff --git a/multiplatform-markdown-renderer/api/multiplatform-markdown-renderer.klib.api b/multiplatform-markdown-renderer/api/multiplatform-markdown-renderer.klib.api index 85c6944..ecabbcc 100644 --- a/multiplatform-markdown-renderer/api/multiplatform-markdown-renderer.klib.api +++ b/multiplatform-markdown-renderer/api/multiplatform-markdown-renderer.klib.api @@ -180,6 +180,15 @@ abstract interface com.mikepenz.markdown.model/MarkdownPadding { // com.mikepenz abstract fun (): androidx.compose.ui.unit/Dp // com.mikepenz.markdown.model/MarkdownPadding.listItemTop.|(){}[0] } +abstract interface com.mikepenz.markdown.model/MarkdownState { // com.mikepenz.markdown.model/MarkdownState|null[0] + abstract val links // com.mikepenz.markdown.model/MarkdownState.links|{}links[0] + abstract fun (): kotlinx.coroutines.flow/StateFlow> // com.mikepenz.markdown.model/MarkdownState.links.|(){}[0] + abstract val state // com.mikepenz.markdown.model/MarkdownState.state|{}state[0] + abstract fun (): kotlinx.coroutines.flow/StateFlow // com.mikepenz.markdown.model/MarkdownState.state.|(){}[0] + + abstract suspend fun parse(): com.mikepenz.markdown.model/State // com.mikepenz.markdown.model/MarkdownState.parse|parse(){}[0] +} + abstract interface com.mikepenz.markdown.model/MarkdownTypography { // com.mikepenz.markdown.model/MarkdownTypography|null[0] abstract val bullet // com.mikepenz.markdown.model/MarkdownTypography.bullet|{}bullet[0] abstract fun (): androidx.compose.ui.text/TextStyle // com.mikepenz.markdown.model/MarkdownTypography.bullet.|(){}[0] @@ -548,19 +557,6 @@ final class com.mikepenz.markdown.model/Input { // com.mikepenz.markdown.model/I final fun toString(): kotlin/String // com.mikepenz.markdown.model/Input.toString|toString(){}[0] } -final class com.mikepenz.markdown.model/MarkdownState { // com.mikepenz.markdown.model/MarkdownState|null[0] - constructor (com.mikepenz.markdown.model/Input) // com.mikepenz.markdown.model/MarkdownState.|(com.mikepenz.markdown.model.Input){}[0] - - final val input // com.mikepenz.markdown.model/MarkdownState.input|{}input[0] - final fun (): com.mikepenz.markdown.model/Input // com.mikepenz.markdown.model/MarkdownState.input.|(){}[0] - final val links // com.mikepenz.markdown.model/MarkdownState.links|{}links[0] - final fun (): kotlinx.coroutines.flow/StateFlow> // com.mikepenz.markdown.model/MarkdownState.links.|(){}[0] - final val state // com.mikepenz.markdown.model/MarkdownState.state|{}state[0] - final fun (): kotlinx.coroutines.flow/StateFlow // com.mikepenz.markdown.model/MarkdownState.state.|(){}[0] - - final suspend fun parse(): com.mikepenz.markdown.model/State // com.mikepenz.markdown.model/MarkdownState.parse|parse(){}[0] -} - final class com.mikepenz.markdown.model/NoOpImageTransformerImpl : com.mikepenz.markdown.model/ImageTransformer { // com.mikepenz.markdown.model/NoOpImageTransformerImpl|null[0] constructor () // com.mikepenz.markdown.model/NoOpImageTransformerImpl.|(){}[0] @@ -696,7 +692,7 @@ final val com.mikepenz.markdown.model/com_mikepenz_markdown_model_DefaultMarkdow final val com.mikepenz.markdown.model/com_mikepenz_markdown_model_ImageData$stableprop // com.mikepenz.markdown.model/com_mikepenz_markdown_model_ImageData$stableprop|#static{}com_mikepenz_markdown_model_ImageData$stableprop[0] final val com.mikepenz.markdown.model/com_mikepenz_markdown_model_Input$stableprop // com.mikepenz.markdown.model/com_mikepenz_markdown_model_Input$stableprop|#static{}com_mikepenz_markdown_model_Input$stableprop[0] final val com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownImageStateImpl$stableprop // com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownImageStateImpl$stableprop|#static{}com_mikepenz_markdown_model_MarkdownImageStateImpl$stableprop[0] -final val com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownState$stableprop // com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownState$stableprop|#static{}com_mikepenz_markdown_model_MarkdownState$stableprop[0] +final val com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownStateImpl$stableprop // com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownStateImpl$stableprop|#static{}com_mikepenz_markdown_model_MarkdownStateImpl$stableprop[0] final val com.mikepenz.markdown.model/com_mikepenz_markdown_model_NoOpImageTransformerImpl$stableprop // com.mikepenz.markdown.model/com_mikepenz_markdown_model_NoOpImageTransformerImpl$stableprop|#static{}com_mikepenz_markdown_model_NoOpImageTransformerImpl$stableprop[0] final val com.mikepenz.markdown.model/com_mikepenz_markdown_model_PlaceholderConfig$stableprop // com.mikepenz.markdown.model/com_mikepenz_markdown_model_PlaceholderConfig$stableprop|#static{}com_mikepenz_markdown_model_PlaceholderConfig$stableprop[0] final val com.mikepenz.markdown.model/com_mikepenz_markdown_model_ReferenceLinkHandlerImpl$stableprop // com.mikepenz.markdown.model/com_mikepenz_markdown_model_ReferenceLinkHandlerImpl$stableprop|#static{}com_mikepenz_markdown_model_ReferenceLinkHandlerImpl$stableprop[0] @@ -759,7 +755,7 @@ final fun com.mikepenz.markdown.compose/LazyMarkdownSuccess(com.mikepenz.markdow final fun com.mikepenz.markdown.compose/Markdown(com.mikepenz.markdown.model/MarkdownState, com.mikepenz.markdown.model/MarkdownColors, com.mikepenz.markdown.model/MarkdownTypography, androidx.compose.ui/Modifier?, com.mikepenz.markdown.model/MarkdownPadding?, com.mikepenz.markdown.model/MarkdownDimens?, com.mikepenz.markdown.model/ImageTransformer?, com.mikepenz.markdown.model/MarkdownAnnotator?, com.mikepenz.markdown.model/MarkdownExtendedSpans?, com.mikepenz.markdown.model/MarkdownInlineContent?, com.mikepenz.markdown.compose.components/MarkdownComponents?, com.mikepenz.markdown.model/MarkdownAnimations?, kotlin/Function3?, kotlin/Function5?, kotlin/Function3?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // com.mikepenz.markdown.compose/Markdown|Markdown(com.mikepenz.markdown.model.MarkdownState;com.mikepenz.markdown.model.MarkdownColors;com.mikepenz.markdown.model.MarkdownTypography;androidx.compose.ui.Modifier?;com.mikepenz.markdown.model.MarkdownPadding?;com.mikepenz.markdown.model.MarkdownDimens?;com.mikepenz.markdown.model.ImageTransformer?;com.mikepenz.markdown.model.MarkdownAnnotator?;com.mikepenz.markdown.model.MarkdownExtendedSpans?;com.mikepenz.markdown.model.MarkdownInlineContent?;com.mikepenz.markdown.compose.components.MarkdownComponents?;com.mikepenz.markdown.model.MarkdownAnimations?;kotlin.Function3?;kotlin.Function5?;kotlin.Function3?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun com.mikepenz.markdown.compose/Markdown(com.mikepenz.markdown.model/State, com.mikepenz.markdown.model/MarkdownColors, com.mikepenz.markdown.model/MarkdownTypography, androidx.compose.ui/Modifier?, com.mikepenz.markdown.model/MarkdownPadding?, com.mikepenz.markdown.model/MarkdownDimens?, com.mikepenz.markdown.model/ImageTransformer?, com.mikepenz.markdown.model/MarkdownAnnotator?, com.mikepenz.markdown.model/MarkdownExtendedSpans?, com.mikepenz.markdown.model/MarkdownInlineContent?, com.mikepenz.markdown.compose.components/MarkdownComponents?, com.mikepenz.markdown.model/MarkdownAnimations?, kotlin/Function3?, kotlin/Function5?, kotlin/Function3?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // com.mikepenz.markdown.compose/Markdown|Markdown(com.mikepenz.markdown.model.State;com.mikepenz.markdown.model.MarkdownColors;com.mikepenz.markdown.model.MarkdownTypography;androidx.compose.ui.Modifier?;com.mikepenz.markdown.model.MarkdownPadding?;com.mikepenz.markdown.model.MarkdownDimens?;com.mikepenz.markdown.model.ImageTransformer?;com.mikepenz.markdown.model.MarkdownAnnotator?;com.mikepenz.markdown.model.MarkdownExtendedSpans?;com.mikepenz.markdown.model.MarkdownInlineContent?;com.mikepenz.markdown.compose.components.MarkdownComponents?;com.mikepenz.markdown.model.MarkdownAnimations?;kotlin.Function3?;kotlin.Function5?;kotlin.Function3?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] final fun com.mikepenz.markdown.compose/Markdown(kotlin/String, com.mikepenz.markdown.model/MarkdownColors, com.mikepenz.markdown.model/MarkdownTypography, androidx.compose.ui/Modifier?, com.mikepenz.markdown.model/MarkdownPadding?, com.mikepenz.markdown.model/MarkdownDimens?, org.intellij.markdown.flavours/MarkdownFlavourDescriptor?, org.intellij.markdown.parser/MarkdownParser?, com.mikepenz.markdown.model/ImageTransformer?, com.mikepenz.markdown.model/MarkdownAnnotator?, com.mikepenz.markdown.model/MarkdownExtendedSpans?, com.mikepenz.markdown.model/MarkdownInlineContent?, com.mikepenz.markdown.compose.components/MarkdownComponents?, com.mikepenz.markdown.model/MarkdownAnimations?, com.mikepenz.markdown.model/ReferenceLinkHandler?, kotlin/Function3?, kotlin/Function5?, kotlin/Function3?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int, kotlin/Int) // com.mikepenz.markdown.compose/Markdown|Markdown(kotlin.String;com.mikepenz.markdown.model.MarkdownColors;com.mikepenz.markdown.model.MarkdownTypography;androidx.compose.ui.Modifier?;com.mikepenz.markdown.model.MarkdownPadding?;com.mikepenz.markdown.model.MarkdownDimens?;org.intellij.markdown.flavours.MarkdownFlavourDescriptor?;org.intellij.markdown.parser.MarkdownParser?;com.mikepenz.markdown.model.ImageTransformer?;com.mikepenz.markdown.model.MarkdownAnnotator?;com.mikepenz.markdown.model.MarkdownExtendedSpans?;com.mikepenz.markdown.model.MarkdownInlineContent?;com.mikepenz.markdown.compose.components.MarkdownComponents?;com.mikepenz.markdown.model.MarkdownAnimations?;com.mikepenz.markdown.model.ReferenceLinkHandler?;kotlin.Function3?;kotlin.Function5?;kotlin.Function3?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int;kotlin.Int){}[0] -final fun com.mikepenz.markdown.compose/MarkdownElement(org.intellij.markdown.ast/ASTNode, com.mikepenz.markdown.compose.components/MarkdownComponents, kotlin/String, kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): kotlin/Boolean // com.mikepenz.markdown.compose/MarkdownElement|MarkdownElement(org.intellij.markdown.ast.ASTNode;com.mikepenz.markdown.compose.components.MarkdownComponents;kotlin.String;kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] +final fun com.mikepenz.markdown.compose/MarkdownElement(org.intellij.markdown.ast/ASTNode, com.mikepenz.markdown.compose.components/MarkdownComponents, kotlin/String, kotlin/Boolean, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.mikepenz.markdown.compose/MarkdownElement|MarkdownElement(org.intellij.markdown.ast.ASTNode;com.mikepenz.markdown.compose.components.MarkdownComponents;kotlin.String;kotlin.Boolean;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun com.mikepenz.markdown.compose/MarkdownSuccess(com.mikepenz.markdown.model/State.Success, com.mikepenz.markdown.compose.components/MarkdownComponents, androidx.compose.ui/Modifier?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int) // com.mikepenz.markdown.compose/MarkdownSuccess|MarkdownSuccess(com.mikepenz.markdown.model.State.Success;com.mikepenz.markdown.compose.components.MarkdownComponents;androidx.compose.ui.Modifier?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_DefaultMarkdownAnimation$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_DefaultMarkdownAnimation$stableprop_getter|com_mikepenz_markdown_model_DefaultMarkdownAnimation$stableprop_getter(){}[0] final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_DefaultMarkdownAnnotator$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_DefaultMarkdownAnnotator$stableprop_getter|com_mikepenz_markdown_model_DefaultMarkdownAnnotator$stableprop_getter(){}[0] @@ -771,7 +767,7 @@ final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_DefaultMarkdow final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_ImageData$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_ImageData$stableprop_getter|com_mikepenz_markdown_model_ImageData$stableprop_getter(){}[0] final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_Input$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_Input$stableprop_getter|com_mikepenz_markdown_model_Input$stableprop_getter(){}[0] final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownImageStateImpl$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownImageStateImpl$stableprop_getter|com_mikepenz_markdown_model_MarkdownImageStateImpl$stableprop_getter(){}[0] -final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownState$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownState$stableprop_getter|com_mikepenz_markdown_model_MarkdownState$stableprop_getter(){}[0] +final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownStateImpl$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_MarkdownStateImpl$stableprop_getter|com_mikepenz_markdown_model_MarkdownStateImpl$stableprop_getter(){}[0] final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_NoOpImageTransformerImpl$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_NoOpImageTransformerImpl$stableprop_getter|com_mikepenz_markdown_model_NoOpImageTransformerImpl$stableprop_getter(){}[0] final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_PlaceholderConfig$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_PlaceholderConfig$stableprop_getter|com_mikepenz_markdown_model_PlaceholderConfig$stableprop_getter(){}[0] final fun com.mikepenz.markdown.model/com_mikepenz_markdown_model_ReferenceLinkHandlerImpl$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.model/com_mikepenz_markdown_model_ReferenceLinkHandlerImpl$stableprop_getter|com_mikepenz_markdown_model_ReferenceLinkHandlerImpl$stableprop_getter(){}[0] @@ -786,5 +782,6 @@ final fun com.mikepenz.markdown.model/markdownExtendedSpans(kotlin/Function2?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): com.mikepenz.markdown.model/MarkdownInlineContent // com.mikepenz.markdown.model/markdownInlineContent|markdownInlineContent(kotlin.collections.Map?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun com.mikepenz.markdown.model/markdownPadding(androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp, androidx.compose.ui.unit/Dp?, androidx.compose.ui.unit/Dp, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.layout/PaddingValues?, androidx.compose.foundation.layout/PaddingValues.Absolute?, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): com.mikepenz.markdown.model/MarkdownPadding // com.mikepenz.markdown.model/markdownPadding|markdownPadding(androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp;androidx.compose.ui.unit.Dp?;androidx.compose.ui.unit.Dp;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.layout.PaddingValues?;androidx.compose.foundation.layout.PaddingValues.Absolute?;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun com.mikepenz.markdown.model/parseMarkdownFlow(kotlin/String, kotlin/Boolean = ..., org.intellij.markdown.flavours/MarkdownFlavourDescriptor = ..., org.intellij.markdown.parser/MarkdownParser = ..., com.mikepenz.markdown.model/ReferenceLinkHandler = ...): kotlinx.coroutines.flow/Flow // com.mikepenz.markdown.model/parseMarkdownFlow|parseMarkdownFlow(kotlin.String;kotlin.Boolean;org.intellij.markdown.flavours.MarkdownFlavourDescriptor;org.intellij.markdown.parser.MarkdownParser;com.mikepenz.markdown.model.ReferenceLinkHandler){}[0] +final fun com.mikepenz.markdown.model/rememberMarkdownState(kotlin/Boolean, org.intellij.markdown.flavours/MarkdownFlavourDescriptor?, org.intellij.markdown.parser/MarkdownParser?, com.mikepenz.markdown.model/ReferenceLinkHandler?, kotlin.coroutines/SuspendFunction0, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): com.mikepenz.markdown.model/MarkdownState // com.mikepenz.markdown.model/rememberMarkdownState|rememberMarkdownState(kotlin.Boolean;org.intellij.markdown.flavours.MarkdownFlavourDescriptor?;org.intellij.markdown.parser.MarkdownParser?;com.mikepenz.markdown.model.ReferenceLinkHandler?;kotlin.coroutines.SuspendFunction0;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun com.mikepenz.markdown.model/rememberMarkdownState(kotlin/String, kotlin/Boolean, org.intellij.markdown.flavours/MarkdownFlavourDescriptor?, org.intellij.markdown.parser/MarkdownParser?, com.mikepenz.markdown.model/ReferenceLinkHandler?, kotlin/Boolean, androidx.compose.runtime/Composer?, kotlin/Int, kotlin/Int): com.mikepenz.markdown.model/MarkdownState // com.mikepenz.markdown.model/rememberMarkdownState|rememberMarkdownState(kotlin.String;kotlin.Boolean;org.intellij.markdown.flavours.MarkdownFlavourDescriptor?;org.intellij.markdown.parser.MarkdownParser?;com.mikepenz.markdown.model.ReferenceLinkHandler?;kotlin.Boolean;androidx.compose.runtime.Composer?;kotlin.Int;kotlin.Int){}[0] final fun com.mikepenz.markdown.utils/com_mikepenz_markdown_utils_EntityConverter$stableprop_getter(): kotlin/Int // com.mikepenz.markdown.utils/com_mikepenz_markdown_utils_EntityConverter$stableprop_getter|com_mikepenz_markdown_utils_EntityConverter$stableprop_getter(){}[0] From 529c5b9f8ca930c5a6b37e8d31e340eeaee76e54 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sun, 25 May 2025 15:48:47 +0200 Subject: [PATCH 5/6] - update to the latest aboutLibraries version --- settings.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings.gradle.kts b/settings.gradle.kts index a90e26e..1428783 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -28,7 +28,7 @@ dependencyResolutionManagement { versionCatalogs { create("baseLibs") { - from("com.mikepenz:version-catalog:0.3.8") + from("com.mikepenz:version-catalog:0.3.9") } } } From 2bbab59121e4286950cb14edcb3e9db0e0aba429 Mon Sep 17 00:00:00 2001 From: Mike Penz Date: Sun, 25 May 2025 15:51:56 +0200 Subject: [PATCH 6/6] - simplify about libs spec - update dependency versions --- .../commonMain/composeResources/files/aboutlibraries.json | 2 +- .../commonMain/composeResources/files/aboutlibraries.json | 2 +- .../kotlin/com/mikepenz/markdown/sample/LicensesPage.kt | 7 ------- .../commonMain/composeResources/files/aboutlibraries.json | 2 +- 4 files changed, 3 insertions(+), 10 deletions(-) diff --git a/sample/desktop/src/commonMain/composeResources/files/aboutlibraries.json b/sample/desktop/src/commonMain/composeResources/files/aboutlibraries.json index 51130d3..af2608a 100644 --- a/sample/desktop/src/commonMain/composeResources/files/aboutlibraries.json +++ b/sample/desktop/src/commonMain/composeResources/files/aboutlibraries.json @@ -1 +1 @@ -{"libraries":[{"uniqueId":"androidx.annotation:annotation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.8.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.arch.core:core-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.2.0","description":"Android Arch-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Arch-Common","website":"https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.collection:collection","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.5.0","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"collections","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.5.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.5","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle-Common","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.5","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.5","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Runtime","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.5","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.5","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.5","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-annotations","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Core annotations used for value types, used by Jackson data binding package.","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-annotations.git","url":"http://github.com/FasterXML/jackson-annotations","developerConnection":"scm:git:git@github.com:FasterXML/jackson-annotations.git"},"name":"Jackson-annotations","website":"http://github.com/FasterXML/jackson","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-core","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Core Jackson processing abstractions (aka Streaming API), implementation for JSON","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-core.git","url":"http://github.com/FasterXML/jackson-core","developerConnection":"scm:git:git@github.com:FasterXML/jackson-core.git"},"name":"Jackson-core","website":"https://github.com/FasterXML/jackson-core","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-databind","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7.1","description":"General data-binding functionality for Jackson: works on core streaming API","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-databind.git","url":"http://github.com/FasterXML/jackson-databind","developerConnection":"scm:git:git@github.com:FasterXML/jackson-databind.git"},"name":"jackson-databind","website":"http://github.com/FasterXML/jackson","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.module:jackson-module-kotlin","funding":[],"developers":[{"name":"Tatu Saloranta"},{"name":"Drew Stephens"},{"name":"Jayson Minard"},{"name":"Vyacheslav Artemyev"}],"artifactVersion":"2.12.7","description":"Add-on module for Jackson (https://github.com/FasterXML/jackson/) to support\n Kotlin language, specifically introspection of method/constructor parameter names,\n without having to add explicit property name annotation.","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-module-kotlin.git","url":"https://github.com/FasterXML/jackson-module-kotlin","developerConnection":"scm:git:git@github.com:FasterXML/jackson-module-kotlin.git"},"name":"jackson-module-kotlin","website":"https://github.com/FasterXML/jackson-module-kotlin","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson:jackson-bom","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Bill of Materials pom for getting full, complete set of compatible versions\nof Jackson components maintained by FasterXML.com","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-bom.git","url":"https://github.com/FasterXML/jackson-bom","developerConnection":"scm:git:git@github.com:FasterXML/jackson-bom.git"},"name":"Jackson BOM","website":"https://github.com/FasterXML/jackson-bom","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.mikepenz:aboutlibraries-compose-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.1.0-rc03","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose UI Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-compose-m3","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.1.0-rc03","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose Material 3 Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.1.0-rc03","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Core Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.squareup.okio:okio","funding":[],"developers":[{"name":"Square, Inc."}],"artifactVersion":"3.10.2","description":"A modern I/O library for Android, Java, and Kotlin Multiplatform.","scm":{"connection":"scm:git:git://github.com/square/okio.git","url":"https://github.com/square/okio/","developerConnection":"scm:git:ssh://git@github.com/square/okio.git"},"name":"okio","website":"https://github.com/square/okio/","licenses":["Apache-2.0"]},{"uniqueId":"dev.snipme:highlights","funding":[],"developers":[{"name":"Tomasz K\u0105dzio\u0142ka"}],"artifactVersion":"1.0.0","description":"Kotlin Multiplatform syntax highlighting engine.","scm":{"connection":"scm:git:ssh://git@github.com:SnipMeDev/Highlights.git","url":"https://github.com/SnipMeDev/Highlights","developerConnection":"scm:git:ssh://git@github.org:SnipMeDev/Highlights.git"},"name":"highlights","website":"https://github.com/SnipMeDev/Highlights","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-ktor3","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-ktor3","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-svg","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-svg","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-core","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-java","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-java","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-events","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-events","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http-cio","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http-cio","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-io","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-io","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-network","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-network","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-sse","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-sse","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-utils","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-utils","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websocket-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websocket-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websockets","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websockets","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"org.freemarker:freemarker","funding":[],"developers":[],"artifactVersion":"2.3.32","description":"FreeMarker is a \"template engine\"; a generic tool to generate text output based on templates.","scm":{"connection":"scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git","url":"https://git-wip-us.apache.org/repos/asf?p=freemarker.git","developerConnection":"scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git"},"name":"Apache FreeMarker","website":"https://freemarker.apache.org/","licenses":["Apache-2.0"],"organization":{"url":"http://apache.org","name":"Apache Software Foundation"}},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle-Common","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Compose integration with Lifecycle","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime Compose","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle ViewModel","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Animation engine and animation primitives that are the building blocks of the Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation Core","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.annotation-internal:annotation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.6.11","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Annotation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.collection-internal:collection","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"collections","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.components:components-resources","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Resources for Compose JB","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Resources for Compose JB","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.desktop:desktop-jvm-macos-arm64","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Desktop","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Desktop","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Foundation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation-layout","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose layout implementations","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Layouts","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material3:material3","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Material You Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material3 Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Material Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material-ripple","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Material ripple used to build interactive components","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Ripple","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Tree composition support for code generated by the Compose compiler plugin and corresponding public API","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime-saveable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose components that allow saving and restoring the local ui state","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Saveable","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI primitives","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-backhandler","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Provides BackHandler in Compose Multiplatform projects","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Multiplatform BackHandler","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-geometry","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose classes related to dimensions without units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Geometry","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-graphics","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose graphics","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Graphics","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-text","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Text primitives and utilities","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Text","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-tooling-preview","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Preview Tooling","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-unit","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose classes for simple units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Unit","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-util","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Internal Compose utilities used by other modules","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Util","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:all-modules-page-plugin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-all-modules-page","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:analysis-markdown","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka analysis-markdown-jb","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:dokka-base","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-base","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:templating-plugin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-templating","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-reflect","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.0.20","description":"Kotlin Full Reflection Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Reflect","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.20","description":"Kotlin Standard Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.20","description":"Kotlin Common Standard Library (legacy, use kotlin-stdlib instead)","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Common","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk7","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Kotlin Standard Library JDK 7 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk7","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk8","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Kotlin Standard Library JDK 8 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk8","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:atomicfu","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.23.2","description":"AtomicFU utilities","scm":{"url":"https://github.com/Kotlin/kotlinx.atomicfu"},"name":"atomicfu","website":"https://github.com/Kotlin/kotlinx.atomicfu","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-collections-immutable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.3.8","description":"Kotlin Immutable Collections multiplatform library","scm":{"url":"https://github.com/Kotlin/kotlinx.collections.immutable"},"name":"kotlinx-collections-immutable","website":"https://github.com/Kotlin/kotlinx.collections.immutable","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-bom","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-core","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-jdk8","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-jdk8","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-slf4j","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-slf4j","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-datetime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"Kotlin Datetime Library","scm":{"url":"https://github.com/Kotlin/kotlinx-datetime"},"name":"kotlinx-datetime","website":"https://github.com/Kotlin/kotlinx-datetime","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-html-jvm","funding":[],"developers":[{"name":"Sergey Mashkov"},{"name":"Anton Dmitriev"}],"artifactVersion":"0.9.1","description":"A kotlinx.html library provides DSL to build HTML to Writer/Appendable or DOM at JVM and browser (or other JavaScript engine) for better Kotlin programming for Web.","scm":{"connection":"scm:git:git@github.com:Kotlin/kotlinx.html.git","url":"https://github.com/Kotlin/kotlinx.html"},"name":"kotlinx.html","website":"https://github.com/Kotlin/kotlinx.html","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-bytestring","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-bytestring","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-core","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.0","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-bom","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.0","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-core","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-json","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-json","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko MPP","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-awt","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko Awt","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-awt-runtime-macos-arm64","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko JVM Runtime for MacOS Arm64","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:annotations","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"23.0.0","description":"A set of annotations used for code inspection support and code documentation.","scm":{"connection":"scm:git:git://github.com/JetBrains/java-annotations.git","url":"https://github.com/JetBrains/java-annotations","developerConnection":"scm:git:ssh://github.com:JetBrains/java-annotations.git"},"name":"JetBrains Java Annotations","website":"https://github.com/JetBrains/java-annotations","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:markdown","funding":[],"developers":[{"organisationUrl":"https://jetbrains.com","name":"Valentin Fondaratov"}],"artifactVersion":"0.7.3","description":"Markdown parser in Kotlin","scm":{"connection":"scm:git:git://github.com/JetBrains/markdown.git","url":"https://github.com/JetBrains/markdown"},"name":"markdown","website":"https://github.com/JetBrains/markdown","licenses":["Apache-2.0"]},{"uniqueId":"org.jsoup:jsoup","funding":[],"developers":[{"name":"Jonathan Hedley"}],"artifactVersion":"1.16.1","description":"jsoup is a Java library for working with real-world HTML. It provides a very convenient API for fetching URLs and extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.","scm":{"connection":"scm:git:https://github.com/jhy/jsoup.git","url":"https://github.com/jhy/jsoup"},"name":"jsoup Java HTML Parser","website":"https://jsoup.org/","licenses":["MIT"],"organization":{"url":"https://jhy.io/","name":"Jonathan Hedley"}},{"uniqueId":"org.slf4j:slf4j-api","funding":[],"developers":[{"name":"Ceki Gulcu"}],"artifactVersion":"2.0.16","description":"The slf4j API","scm":{"connection":"scm:git:https://github.com/qos-ch/slf4j.git/slf4j-parent/slf4j-api","url":"https://github.com/qos-ch/slf4j/slf4j-parent/slf4j-api"},"name":"SLF4J API Module","website":"http://www.slf4j.org","licenses":["MIT"],"organization":{"url":"http://www.qos.ch","name":"QOS.ch"}}],"licenses":{"Apache-2.0":{"content":"Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","hash":"Apache-2.0","internalHash":"Apache-2.0","url":"https://spdx.org/licenses/Apache-2.0.html","spdxId":"Apache-2.0","name":"Apache License 2.0"},"MIT":{"content":"MIT License\n\nCopyright (c) \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","hash":"MIT","internalHash":"MIT","url":"https://spdx.org/licenses/MIT.html","spdxId":"MIT","name":"MIT License"}}} \ No newline at end of file +{"libraries":[{"uniqueId":"androidx.annotation:annotation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.8.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.arch.core:core-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.2.0","description":"Android Arch-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Arch-Common","website":"https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.collection:collection","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.5.0","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"collections","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.5.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.5","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle-Common","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.5","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.5","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Runtime","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.5","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.5","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.5","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-annotations","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Core annotations used for value types, used by Jackson data binding package.","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-annotations.git","url":"http://github.com/FasterXML/jackson-annotations","developerConnection":"scm:git:git@github.com:FasterXML/jackson-annotations.git"},"name":"Jackson-annotations","website":"http://github.com/FasterXML/jackson","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-core","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Core Jackson processing abstractions (aka Streaming API), implementation for JSON","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-core.git","url":"http://github.com/FasterXML/jackson-core","developerConnection":"scm:git:git@github.com:FasterXML/jackson-core.git"},"name":"Jackson-core","website":"https://github.com/FasterXML/jackson-core","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-databind","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7.1","description":"General data-binding functionality for Jackson: works on core streaming API","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-databind.git","url":"http://github.com/FasterXML/jackson-databind","developerConnection":"scm:git:git@github.com:FasterXML/jackson-databind.git"},"name":"jackson-databind","website":"http://github.com/FasterXML/jackson","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.module:jackson-module-kotlin","funding":[],"developers":[{"name":"Drew Stephens"},{"name":"Jayson Minard"},{"name":"Vyacheslav Artemyev"}],"artifactVersion":"2.12.7","description":"Add-on module for Jackson (https://github.com/FasterXML/jackson/) to support\n Kotlin language, specifically introspection of method/constructor parameter names,\n without having to add explicit property name annotation.","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-module-kotlin.git","url":"https://github.com/FasterXML/jackson-module-kotlin","developerConnection":"scm:git:git@github.com:FasterXML/jackson-module-kotlin.git"},"name":"jackson-module-kotlin","website":"https://github.com/FasterXML/jackson-module-kotlin","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson:jackson-bom","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Bill of Materials pom for getting full, complete set of compatible versions\nof Jackson components maintained by FasterXML.com","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-bom.git","url":"https://github.com/FasterXML/jackson-bom","developerConnection":"scm:git:git@github.com:FasterXML/jackson-bom.git"},"name":"Jackson BOM","website":"https://github.com/FasterXML/jackson-bom","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.mikepenz:aboutlibraries-compose-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.2.0-rc01","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose UI Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-compose-m3","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.2.0-rc01","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose Material 3 Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.2.0-rc01","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Core Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.squareup.okio:okio","funding":[],"developers":[{"name":"Square, Inc."}],"artifactVersion":"3.10.2","description":"A modern I/O library for Android, Java, and Kotlin Multiplatform.","scm":{"connection":"scm:git:git://github.com/square/okio.git","url":"https://github.com/square/okio/","developerConnection":"scm:git:ssh://git@github.com/square/okio.git"},"name":"okio","website":"https://github.com/square/okio/","licenses":["Apache-2.0"]},{"uniqueId":"dev.snipme:highlights","funding":[],"developers":[{"name":"Tomasz K\u0105dzio\u0142ka"}],"artifactVersion":"1.0.0","description":"Kotlin Multiplatform syntax highlighting engine.","scm":{"connection":"scm:git:ssh://git@github.com:SnipMeDev/Highlights.git","url":"https://github.com/SnipMeDev/Highlights","developerConnection":"scm:git:ssh://git@github.org:SnipMeDev/Highlights.git"},"name":"highlights","website":"https://github.com/SnipMeDev/Highlights","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-ktor3","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-ktor3","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-svg","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-svg","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-core","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-java","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-java","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-events","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-events","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http-cio","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http-cio","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-io","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-io","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-network","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-network","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-sse","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-sse","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-utils","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-utils","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websocket-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websocket-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websockets","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websockets","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"org.freemarker:freemarker","funding":[],"developers":[],"artifactVersion":"2.3.32","description":"FreeMarker is a \"template engine\"; a generic tool to generate text output based on templates.","scm":{"connection":"scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git","url":"https://git-wip-us.apache.org/repos/asf?p=freemarker.git","developerConnection":"scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git"},"name":"Apache FreeMarker","website":"https://freemarker.apache.org/","licenses":["Apache-2.0"],"organization":{"url":"http://apache.org","name":"Apache Software Foundation"}},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle-Common","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Compose integration with Lifecycle","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime Compose","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle ViewModel","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Animation engine and animation primitives that are the building blocks of the Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation Core","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.annotation-internal:annotation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.6.11","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Annotation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.collection-internal:collection","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"collections","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.components:components-resources","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Resources for Compose JB","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Resources for Compose JB","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.desktop:desktop-jvm-macos-arm64","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Desktop","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Desktop","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Foundation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation-layout","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose layout implementations","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Layouts","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material3:material3","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Material You Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material3 Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Material Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material-ripple","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Material ripple used to build interactive components","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Ripple","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Tree composition support for code generated by the Compose compiler plugin and corresponding public API","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime-saveable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose components that allow saving and restoring the local ui state","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Saveable","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI primitives","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-backhandler","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Provides BackHandler in Compose Multiplatform projects","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Multiplatform BackHandler","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-geometry","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose classes related to dimensions without units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Geometry","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-graphics","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose graphics","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Graphics","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-text","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Text primitives and utilities","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Text","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-tooling-preview","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Preview Tooling","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-unit","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose classes for simple units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Unit","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-util","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Internal Compose utilities used by other modules","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Util","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:all-modules-page-plugin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-all-modules-page","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:analysis-markdown","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka analysis-markdown-jb","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:dokka-base","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-base","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:templating-plugin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-templating","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-reflect","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.0.20","description":"Kotlin Full Reflection Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Reflect","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.21","description":"Kotlin Standard Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.21","description":"Kotlin Common Standard Library (legacy, use kotlin-stdlib instead)","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Common","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk7","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Kotlin Standard Library JDK 7 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk7","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk8","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Kotlin Standard Library JDK 8 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk8","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:atomicfu","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.23.2","description":"AtomicFU utilities","scm":{"url":"https://github.com/Kotlin/kotlinx.atomicfu"},"name":"atomicfu","website":"https://github.com/Kotlin/kotlinx.atomicfu","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-collections-immutable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.4.0","description":"Kotlin Immutable Collections multiplatform library","scm":{"url":"https://github.com/Kotlin/kotlinx.collections.immutable"},"name":"kotlinx-collections-immutable","website":"https://github.com/Kotlin/kotlinx.collections.immutable","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.2","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-bom","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.2","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-core","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-jdk8","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.2","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-jdk8","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-slf4j","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.2","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-slf4j","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-datetime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"Kotlin Datetime Library","scm":{"url":"https://github.com/Kotlin/kotlinx-datetime"},"name":"kotlinx-datetime","website":"https://github.com/Kotlin/kotlinx-datetime","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-html-jvm","funding":[],"developers":[{"name":"Sergey Mashkov"},{"name":"Anton Dmitriev"}],"artifactVersion":"0.9.1","description":"A kotlinx.html library provides DSL to build HTML to Writer/Appendable or DOM at JVM and browser (or other JavaScript engine) for better Kotlin programming for Web.","scm":{"connection":"scm:git:git@github.com:Kotlin/kotlinx.html.git","url":"https://github.com/Kotlin/kotlinx.html"},"name":"kotlinx.html","website":"https://github.com/Kotlin/kotlinx.html","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-bytestring","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.7.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-bytestring","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.7.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-core","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-bom","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-core","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-json","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-json","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko MPP","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-awt","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko Awt","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-awt-runtime-macos-arm64","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko JVM Runtime for MacOS Arm64","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:annotations","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"23.0.0","description":"A set of annotations used for code inspection support and code documentation.","scm":{"connection":"scm:git:git://github.com/JetBrains/java-annotations.git","url":"https://github.com/JetBrains/java-annotations","developerConnection":"scm:git:ssh://github.com:JetBrains/java-annotations.git"},"name":"JetBrains Java Annotations","website":"https://github.com/JetBrains/java-annotations","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:markdown","funding":[],"developers":[{"organisationUrl":"https://jetbrains.com","name":"Valentin Fondaratov"}],"artifactVersion":"0.7.3","description":"Markdown parser in Kotlin","scm":{"connection":"scm:git:git://github.com/JetBrains/markdown.git","url":"https://github.com/JetBrains/markdown"},"name":"markdown","website":"https://github.com/JetBrains/markdown","licenses":["Apache-2.0"]},{"uniqueId":"org.jsoup:jsoup","funding":[],"developers":[{"name":"Jonathan Hedley"}],"artifactVersion":"1.16.1","description":"jsoup is a Java library for working with real-world HTML. It provides a very convenient API for fetching URLs and extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.","scm":{"connection":"scm:git:https://github.com/jhy/jsoup.git","url":"https://github.com/jhy/jsoup"},"name":"jsoup Java HTML Parser","website":"https://jsoup.org/","licenses":["MIT"],"organization":{"url":"https://jhy.io/","name":"Jonathan Hedley"}},{"uniqueId":"org.slf4j:slf4j-api","funding":[],"developers":[{"name":"Ceki Gulcu"}],"artifactVersion":"2.0.16","description":"The slf4j API","scm":{"connection":"scm:git:https://github.com/qos-ch/slf4j.git/slf4j-parent/slf4j-api","url":"https://github.com/qos-ch/slf4j/slf4j-parent/slf4j-api"},"name":"SLF4J API Module","website":"http://www.slf4j.org","licenses":["MIT"],"organization":{"url":"http://www.qos.ch","name":"QOS.ch"}}],"licenses":{"Apache-2.0":{"content":"Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","hash":"Apache-2.0","internalHash":"Apache-2.0","url":"https://spdx.org/licenses/Apache-2.0.html","spdxId":"Apache-2.0","name":"Apache License 2.0"},"MIT":{"content":"MIT License\n\nCopyright (c) \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","hash":"MIT","internalHash":"MIT","url":"https://spdx.org/licenses/MIT.html","spdxId":"MIT","name":"MIT License"}}} \ No newline at end of file diff --git a/sample/shared/src/commonMain/composeResources/files/aboutlibraries.json b/sample/shared/src/commonMain/composeResources/files/aboutlibraries.json index 3031ca8..4dc063c 100644 --- a/sample/shared/src/commonMain/composeResources/files/aboutlibraries.json +++ b/sample/shared/src/commonMain/composeResources/files/aboutlibraries.json @@ -1 +1 @@ -{"libraries":[{"uniqueId":"androidx.activity:activity","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.2","description":"Provides the base Activity subclass and the relevant hooks to build a composable structure on top.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Activity","website":"https://developer.android.com/jetpack/androidx/releases/activity#1.8.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.activity:activity-compose","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.2","description":"Compose integration with Activity","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Activity Compose","website":"https://developer.android.com/jetpack/androidx/releases/activity#1.8.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.activity:activity-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.2","description":"Kotlin extensions for 'activity' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Activity Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/activity#1.8.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.annotation:annotation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.9.1","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.annotation:annotation-experimental","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.4.1","description":"Java annotation for use on unstable Android API surfaces. When used in conjunction with the Experimental annotation lint checks, this annotation provides functional parity with Kotlin's Experimental annotation.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Experimental annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.4.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.appcompat:appcompat-resources","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.0","description":"Provides backward-compatible implementations of resource-related Android SDKfunctionality, including color state list theming.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"AppCompat Resources","website":"https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.arch.core:core-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.2.0","description":"Android Arch-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Arch-Common","website":"https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.arch.core:core-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.2.0","description":"Android Arch-Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Arch-Runtime","website":"https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.autofill:autofill","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"AndroidX Autofill","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"AndroidX Autofill","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.collection:collection","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.5.0","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"collections","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.5.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.collection:collection-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.5.0","description":"Kotlin extensions for 'collection' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Collections Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.5.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.animation:animation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose animation library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Animation","website":"https://developer.android.com/jetpack/androidx/releases/compose-animation#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.animation:animation-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Animation engine and animation primitives that are the building blocks of the Compose animation library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Animation Core","website":"https://developer.android.com/jetpack/androidx/releases/compose-animation#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.foundation:foundation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Foundation","website":"https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.foundation:foundation-layout","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose layout implementations","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Layouts","website":"https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material3:material3","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.2","description":"Compose Material You Design Components library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material3 Components","website":"https://developer.android.com/jetpack/androidx/releases/compose-material3#1.3.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material:material","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose Material Design Components library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material Components","website":"https://developer.android.com/jetpack/androidx/releases/compose-material#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material:material-icons-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.6.0","description":"Compose Material Design core icons. This module contains the most commonly used set of Material icons.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material Icons Core","website":"https://developer.android.com/jetpack/androidx/releases/compose-material#1.6.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material:material-ripple","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Material ripple used to build interactive components","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material Ripple","website":"https://developer.android.com/jetpack/androidx/releases/compose-material#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.runtime:runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Tree composition support for code generated by the Compose compiler plugin and corresponding public API","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Runtime","website":"https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.runtime:runtime-saveable","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose components that allow saving and restoring the local ui state","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Saveable","website":"https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose UI","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-geometry","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose classes related to dimensions without units","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Geometry","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-graphics","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose graphics","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Graphics","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-text","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose Text primitives and utilities","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose UI Text","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-tooling-preview","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose UI Preview Tooling","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-unit","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Compose classes for simple units","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Unit","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-util","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.0-rc03","description":"Internal Compose utilities used by other modules","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Util","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.0-rc03","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.concurrent:concurrent-futures","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"Androidx implementation of Guava's ListenableFuture","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"AndroidX Futures","website":"https://developer.android.com/topic/libraries/architecture/index.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.core:core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.16.0","description":"Provides backward-compatible implementations of Android platform APIs and features.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Core","website":"https://developer.android.com/jetpack/androidx/releases/core#1.16.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.core:core-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.16.0","description":"Kotlin extensions for 'core' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Core Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/core#1.16.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.core:core-viewtree","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"Provides ViewTree extensions packaged for use by other core androidx libraries","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"androidx.core:core-viewtree","website":"https://developer.android.com/jetpack/androidx/releases/core#1.0.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.customview:customview-poolingcontainer","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"Utilities for listening to the lifecycle of containers that manage their child Views' lifecycle, such as RecyclerView","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"androidx.customview:poolingcontainer","website":"https://developer.android.com/jetpack/androidx/releases/customview#1.0.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.emoji2:emoji2","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.4.0","description":"Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Emoji2","website":"https://developer.android.com/jetpack/androidx/releases/emoji2#1.4.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.exifinterface:exifinterface","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.7","description":"Android Support ExifInterface","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Support ExifInterface","website":"https://developer.android.com/jetpack/androidx/releases/exifinterface#1.3.7","licenses":["Apache-2.0"]},{"uniqueId":"androidx.graphics:graphics-path","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.1","description":"Query segment data for android.graphics.Path objects","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Graphics Path","website":"https://developer.android.com/jetpack/androidx/releases/graphics#1.0.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.interpolator:interpolator","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Interpolators","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle-Common","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-common-java8","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle-Common for Java 8 Language","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle-Common for Java 8","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-livedata-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle LiveData Core","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle LiveData Core","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-process","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle Process","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Process","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Runtime","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime-compose","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Compose integration with Lifecycle","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Runtime Compose","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Kotlin extensions for 'lifecycle' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Kotlin extensions for 'viewmodel' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel-savedstate","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel with SavedState","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.profileinstaller:profileinstaller","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.4.1","description":"Allows libraries to prepopulate ahead of time compilation traces to be read by ART","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Profile Installer","website":"https://developer.android.com/jetpack/androidx/releases/profileinstaller#1.4.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.savedstate:savedstate","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.2.1","description":"Android Lifecycle Saved State","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Saved State","website":"https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.savedstate:savedstate-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.2.1","description":"Kotlin extensions for 'savedstate' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"SavedState Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.startup:startup-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.1","description":"Android App Startup Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android App Startup Runtime","website":"https://developer.android.com/jetpack/androidx/releases/startup#1.1.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.tracing:tracing","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.2.0","description":"Android Tracing","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Tracing","website":"https://developer.android.com/jetpack/androidx/releases/tracing#1.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.vectordrawable:vectordrawable","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"Android Support VectorDrawable","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support VectorDrawable","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.vectordrawable:vectordrawable-animated","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"Android Support AnimatedVectorDrawable","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support AnimatedVectorDrawable","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.versionedparcelable:versionedparcelable","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.1","description":"Provides a stable but relatively compact binary serialization format that can be passed across processes or persisted safely.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"VersionedParcelable","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"com.caverock:androidsvg-aar","funding":[],"developers":[{"name":"Paul LeBeau"}],"artifactVersion":"1.4","description":"SVG rendering library for Android.","scm":{"connection":"https://github.com/BigBadaboom/androidsvg.git","url":"https://github.com/BigBadaboom/androidsvg","developerConnection":"https://github.com/BigBadaboom/androidsvg.git"},"name":"AndroidSVG","website":"https://github.com/BigBadaboom/androidsvg","licenses":["Apache-2.0"]},{"uniqueId":"com.fasterxml.jackson.core:jackson-annotations","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Core annotations used for value types, used by Jackson data binding package.","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-annotations.git","url":"http://github.com/FasterXML/jackson-annotations","developerConnection":"scm:git:git@github.com:FasterXML/jackson-annotations.git"},"name":"Jackson-annotations","website":"http://github.com/FasterXML/jackson","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-core","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Core Jackson processing abstractions (aka Streaming API), implementation for JSON","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-core.git","url":"http://github.com/FasterXML/jackson-core","developerConnection":"scm:git:git@github.com:FasterXML/jackson-core.git"},"name":"Jackson-core","website":"https://github.com/FasterXML/jackson-core","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-databind","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7.1","description":"General data-binding functionality for Jackson: works on core streaming API","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-databind.git","url":"http://github.com/FasterXML/jackson-databind","developerConnection":"scm:git:git@github.com:FasterXML/jackson-databind.git"},"name":"jackson-databind","website":"http://github.com/FasterXML/jackson","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.module:jackson-module-kotlin","funding":[],"developers":[{"name":"Tatu Saloranta"},{"name":"Drew Stephens"},{"name":"Jayson Minard"},{"name":"Vyacheslav Artemyev"}],"artifactVersion":"2.12.7","description":"Add-on module for Jackson (https://github.com/FasterXML/jackson/) to support\n Kotlin language, specifically introspection of method/constructor parameter names,\n without having to add explicit property name annotation.","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-module-kotlin.git","url":"https://github.com/FasterXML/jackson-module-kotlin","developerConnection":"scm:git:git@github.com:FasterXML/jackson-module-kotlin.git"},"name":"jackson-module-kotlin","website":"https://github.com/FasterXML/jackson-module-kotlin","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson:jackson-bom","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Bill of Materials pom for getting full, complete set of compatible versions\nof Jackson components maintained by FasterXML.com","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-bom.git","url":"https://github.com/FasterXML/jackson-bom","developerConnection":"scm:git:git@github.com:FasterXML/jackson-bom.git"},"name":"Jackson BOM","website":"https://github.com/FasterXML/jackson-bom","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.google.accompanist:accompanist-drawablepainter","funding":[],"developers":[{"name":"Google"}],"artifactVersion":"0.36.0","description":"Utilities for Jetpack Compose","scm":{"connection":"scm:git:git://github.com/google/accompanist.git","url":"https://github.com/google/accompanist/","developerConnection":"scm:git:git://github.com/google/accompanist.git"},"name":"Accompanist Drawable Painter library","website":"https://github.com/google/accompanist/","licenses":["Apache-2.0"]},{"uniqueId":"com.google.guava:listenablefuture","funding":[],"developers":[{"organisationUrl":"http://www.google.com","name":"Kevin Bourrillion"}],"artifactVersion":"1.0","description":"Contains Guava's com.google.common.util.concurrent.ListenableFuture class,\n without any of its other classes -- but is also available in a second\n \"version\" that omits the class to avoid conflicts with the copy in Guava\n itself. The idea is:\n\n - If users want only ListenableFuture, they depend on listenablefuture-1.0.\n\n - If users want all of Guava, they depend on guava, which, as of Guava\n 27.0, depends on\n listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-...\n version number is enough for some build systems (notably, Gradle) to select\n that empty artifact over the \"real\" listenablefuture-1.0 -- avoiding a\n conflict with the copy of ListenableFuture in guava itself. If users are\n using an older version of Guava or a build system other than Gradle, they\n may see class conflicts. If so, they can solve them by manually excluding\n the listenablefuture artifact or manually forcing their build systems to\n use 9999.0-....","scm":{"connection":"scm:git:https://github.com/google/guava.git/listenablefuture","url":"https://github.com/google/guava/listenablefuture","developerConnection":"scm:git:git@github.com:google/guava.git/listenablefuture"},"name":"Guava ListenableFuture only","website":"https://github.com/google/guava/listenablefuture","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-compose-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.1.0-rc03","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose UI Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-compose-m3","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.1.0-rc03","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose Material 3 Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.1.0-rc03","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Core Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.squareup.okio:okio","funding":[],"developers":[{"name":"Square, Inc."}],"artifactVersion":"3.10.2","description":"A modern I/O library for Android, Java, and Kotlin Multiplatform.","scm":{"connection":"scm:git:git://github.com/square/okio.git","url":"https://github.com/square/okio/","developerConnection":"scm:git:ssh://git@github.com/square/okio.git"},"name":"okio","website":"https://github.com/square/okio/","licenses":["Apache-2.0"]},{"uniqueId":"dev.snipme:highlights","funding":[],"developers":[{"name":"Tomasz K\u0105dzio\u0142ka"}],"artifactVersion":"1.0.0","description":"Kotlin Multiplatform syntax highlighting engine.","scm":{"connection":"scm:git:ssh://git@github.com:SnipMeDev/Highlights.git","url":"https://github.com/SnipMeDev/Highlights","developerConnection":"scm:git:ssh://git@github.org:SnipMeDev/Highlights.git"},"name":"highlights","website":"https://github.com/SnipMeDev/Highlights","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-ktor3","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-ktor3","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-svg","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-svg","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-core","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-darwin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-darwin","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-events","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-events","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http-cio","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http-cio","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-io","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-io","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-network","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-network","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-network-tls","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-network-tls","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-sse","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-sse","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-utils","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-utils","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websocket-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websocket-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websockets","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websockets","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"org.freemarker:freemarker","funding":[],"developers":[],"artifactVersion":"2.3.32","description":"FreeMarker is a \"template engine\"; a generic tool to generate text output based on templates.","scm":{"connection":"scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git","url":"https://git-wip-us.apache.org/repos/asf?p=freemarker.git","developerConnection":"scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git"},"name":"Apache FreeMarker","website":"https://freemarker.apache.org/","licenses":["Apache-2.0"],"organization":{"url":"http://apache.org","name":"Apache Software Foundation"}},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle-Common","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Compose integration with Lifecycle","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime Compose","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle ViewModel","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Animation engine and animation primitives that are the building blocks of the Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation Core","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.annotation-internal:annotation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.6.11","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Annotation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.collection-internal:collection","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"collections","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.components:components-resources","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Resources for Compose JB","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Resources for Compose JB","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Foundation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation-layout","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose layout implementations","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Layouts","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material3:material3","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Material You Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material3 Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Material Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material-ripple","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Material ripple used to build interactive components","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Ripple","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Tree composition support for code generated by the Compose compiler plugin and corresponding public API","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime-saveable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose components that allow saving and restoring the local ui state","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Saveable","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI primitives","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-backhandler","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Provides BackHandler in Compose Multiplatform projects","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Multiplatform BackHandler","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-geometry","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose classes related to dimensions without units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Geometry","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-graphics","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose graphics","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Graphics","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-text","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Text primitives and utilities","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Text","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-tooling-preview","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Preview Tooling","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-uikit","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Internal iOS UIKit utilities including Objective-C library.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UIKit Utils","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-unit","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose classes for simple units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Unit","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-util","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Internal Compose utilities used by other modules","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Util","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:all-modules-page-plugin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-all-modules-page","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:analysis-markdown","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka analysis-markdown-jb","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:dokka-base","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-base","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:templating-plugin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-templating","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-dom-api-compat","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.20","description":"Kotlin DOM API compatibility library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Dom Api Compat","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-reflect","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.0.20","description":"Kotlin Full Reflection Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Reflect","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.20","description":"Kotlin Standard Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.20","description":"Kotlin Common Standard Library (legacy, use kotlin-stdlib instead)","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Common","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk7","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Kotlin Standard Library JDK 7 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk7","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk8","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Kotlin Standard Library JDK 8 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk8","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.20","description":"Kotlin Standard Library for JS","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Js","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-wasm-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.20","description":"Kotlin Standard Library for experimental WebAssembly JS platform","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Wasm Js","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlinx-atomicfu-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Runtime library for the Atomicfu compiler plugin","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlinx Atomicfu Runtime","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:atomicfu","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.27.0","description":"AtomicFU utilities","scm":{"url":"https://github.com/Kotlin/kotlinx.atomicfu"},"name":"atomicfu","website":"https://github.com/Kotlin/kotlinx.atomicfu","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-browser","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.3","description":"Kotlinx Browser","scm":{"url":"https://github.com/Kotlin/kotlinx-browser"},"name":"kotlinx-browser","website":"https://github.com/Kotlin/kotlinx-browser","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-collections-immutable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.3.8","description":"Kotlin Immutable Collections multiplatform library","scm":{"url":"https://github.com/Kotlin/kotlinx.collections.immutable"},"name":"kotlinx-collections-immutable","website":"https://github.com/Kotlin/kotlinx.collections.immutable","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-android","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-android","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-bom","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-core","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-slf4j","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-slf4j","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-datetime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"Kotlin Datetime Library","scm":{"url":"https://github.com/Kotlin/kotlinx-datetime"},"name":"kotlinx-datetime","website":"https://github.com/Kotlin/kotlinx-datetime","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-html-jvm","funding":[],"developers":[{"name":"Sergey Mashkov"},{"name":"Anton Dmitriev"}],"artifactVersion":"0.9.1","description":"A kotlinx.html library provides DSL to build HTML to Writer/Appendable or DOM at JVM and browser (or other JavaScript engine) for better Kotlin programming for Web.","scm":{"connection":"scm:git:git@github.com:Kotlin/kotlinx.html.git","url":"https://github.com/Kotlin/kotlinx.html"},"name":"kotlinx.html","website":"https://github.com/Kotlin/kotlinx.html","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-bytestring","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-bytestring","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-core","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.0","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-bom","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.0","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-core","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-json","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-json","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko MPP","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-awt","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko Awt","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko Js","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-js-wasm-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko WASM Runtime","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-wasm-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko WasmJs","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:annotations","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"23.0.0","description":"A set of annotations used for code inspection support and code documentation.","scm":{"connection":"scm:git:git://github.com/JetBrains/java-annotations.git","url":"https://github.com/JetBrains/java-annotations","developerConnection":"scm:git:ssh://github.com:JetBrains/java-annotations.git"},"name":"JetBrains Java Annotations","website":"https://github.com/JetBrains/java-annotations","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:markdown","funding":[],"developers":[{"organisationUrl":"https://jetbrains.com","name":"Valentin Fondaratov"}],"artifactVersion":"0.7.3","description":"Markdown parser in Kotlin","scm":{"connection":"scm:git:git://github.com/JetBrains/markdown.git","url":"https://github.com/JetBrains/markdown"},"name":"markdown","website":"https://github.com/JetBrains/markdown","licenses":["Apache-2.0"]},{"uniqueId":"org.jsoup:jsoup","funding":[],"developers":[{"name":"Jonathan Hedley"}],"artifactVersion":"1.16.1","description":"jsoup is a Java library for working with real-world HTML. It provides a very convenient API for fetching URLs and extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.","scm":{"connection":"scm:git:https://github.com/jhy/jsoup.git","url":"https://github.com/jhy/jsoup"},"name":"jsoup Java HTML Parser","website":"https://jsoup.org/","licenses":["MIT"],"organization":{"url":"https://jhy.io/","name":"Jonathan Hedley"}},{"uniqueId":"org.jspecify:jspecify","funding":[],"developers":[{"name":"Kevin Bourrillion"}],"artifactVersion":"1.0.0","description":"An artifact of well-named and well-specified annotations to power static analysis checks","scm":{"connection":"scm:git:git@github.com:jspecify/jspecify.git","url":"https://github.com/jspecify/jspecify/","developerConnection":"scm:git:git@github.com:jspecify/jspecify.git"},"name":"JSpecify annotations","website":"http://jspecify.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.slf4j:slf4j-api","funding":[],"developers":[{"name":"Ceki Gulcu"}],"artifactVersion":"2.0.16","description":"The slf4j API","scm":{"connection":"scm:git:https://github.com/qos-ch/slf4j.git/slf4j-parent/slf4j-api","url":"https://github.com/qos-ch/slf4j/slf4j-parent/slf4j-api"},"name":"SLF4J API Module","website":"http://www.slf4j.org","licenses":["MIT"],"organization":{"url":"http://www.qos.ch","name":"QOS.ch"}}],"licenses":{"Apache-2.0":{"content":"Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","hash":"Apache-2.0","internalHash":"Apache-2.0","url":"https://spdx.org/licenses/Apache-2.0.html","spdxId":"Apache-2.0","name":"Apache License 2.0"},"MIT":{"content":"MIT License\n\nCopyright (c) \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","hash":"MIT","internalHash":"MIT","url":"https://spdx.org/licenses/MIT.html","spdxId":"MIT","name":"MIT License"}}} \ No newline at end of file +{"libraries":[{"uniqueId":"androidx.activity:activity","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.2","description":"Provides the base Activity subclass and the relevant hooks to build a composable structure on top.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Activity","website":"https://developer.android.com/jetpack/androidx/releases/activity#1.8.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.activity:activity-compose","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.2","description":"Compose integration with Activity","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Activity Compose","website":"https://developer.android.com/jetpack/androidx/releases/activity#1.8.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.activity:activity-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.2","description":"Kotlin extensions for 'activity' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Activity Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/activity#1.8.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.annotation:annotation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.9.1","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.annotation:annotation-experimental","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.4.1","description":"Java annotation for use on unstable Android API surfaces. When used in conjunction with the Experimental annotation lint checks, this annotation provides functional parity with Kotlin's Experimental annotation.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Experimental annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.4.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.appcompat:appcompat-resources","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.7.0","description":"Provides backward-compatible implementations of resource-related Android SDKfunctionality, including color state list theming.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"AppCompat Resources","website":"https://developer.android.com/jetpack/androidx/releases/appcompat#1.7.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.arch.core:core-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.2.0","description":"Android Arch-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Arch-Common","website":"https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.arch.core:core-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.2.0","description":"Android Arch-Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Arch-Runtime","website":"https://developer.android.com/jetpack/androidx/releases/arch-core#2.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.autofill:autofill","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"AndroidX Autofill","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"AndroidX Autofill","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.collection:collection","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.5.0","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"collections","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.5.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.collection:collection-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.5.0","description":"Kotlin extensions for 'collection' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Collections Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.5.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.animation:animation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose animation library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Animation","website":"https://developer.android.com/jetpack/androidx/releases/compose-animation#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.animation:animation-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Animation engine and animation primitives that are the building blocks of the Compose animation library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Animation Core","website":"https://developer.android.com/jetpack/androidx/releases/compose-animation#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.foundation:foundation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Foundation","website":"https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.foundation:foundation-layout","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose layout implementations","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Layouts","website":"https://developer.android.com/jetpack/androidx/releases/compose-foundation#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material3:material3","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.2","description":"Compose Material You Design Components library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material3 Components","website":"https://developer.android.com/jetpack/androidx/releases/compose-material3#1.3.2","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material:material","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose Material Design Components library","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material Components","website":"https://developer.android.com/jetpack/androidx/releases/compose-material#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material:material-icons-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.6.0","description":"Compose Material Design core icons. This module contains the most commonly used set of Material icons.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material Icons Core","website":"https://developer.android.com/jetpack/androidx/releases/compose-material#1.6.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.material:material-ripple","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Material ripple used to build interactive components","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Material Ripple","website":"https://developer.android.com/jetpack/androidx/releases/compose-material#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.runtime:runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Tree composition support for code generated by the Compose compiler plugin and corresponding public API","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Runtime","website":"https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.runtime:runtime-saveable","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose components that allow saving and restoring the local ui state","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Saveable","website":"https://developer.android.com/jetpack/androidx/releases/compose-runtime#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose UI","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-geometry","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose classes related to dimensions without units","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Geometry","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-graphics","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose graphics","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Graphics","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-text","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose Text primitives and utilities","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose UI Text","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-tooling-preview","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose UI Preview Tooling","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-unit","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Compose classes for simple units","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Unit","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.compose.ui:ui-util","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.8.1","description":"Internal Compose utilities used by other modules","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Compose Util","website":"https://developer.android.com/jetpack/androidx/releases/compose-ui#1.8.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.concurrent:concurrent-futures","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"Androidx implementation of Guava's ListenableFuture","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"AndroidX Futures","website":"https://developer.android.com/topic/libraries/architecture/index.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.core:core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.16.0","description":"Provides backward-compatible implementations of Android platform APIs and features.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Core","website":"https://developer.android.com/jetpack/androidx/releases/core#1.16.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.core:core-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.16.0","description":"Kotlin extensions for 'core' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Core Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/core#1.16.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.core:core-viewtree","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"Provides ViewTree extensions packaged for use by other core androidx libraries","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"androidx.core:core-viewtree","website":"https://developer.android.com/jetpack/androidx/releases/core#1.0.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.customview:customview-poolingcontainer","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"Utilities for listening to the lifecycle of containers that manage their child Views' lifecycle, such as RecyclerView","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"androidx.customview:poolingcontainer","website":"https://developer.android.com/jetpack/androidx/releases/customview#1.0.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.emoji2:emoji2","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.4.0","description":"Core library to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Emoji2","website":"https://developer.android.com/jetpack/androidx/releases/emoji2#1.4.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.exifinterface:exifinterface","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.3.7","description":"Android Support ExifInterface","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Support ExifInterface","website":"https://developer.android.com/jetpack/androidx/releases/exifinterface#1.3.7","licenses":["Apache-2.0"]},{"uniqueId":"androidx.graphics:graphics-path","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.1","description":"Query segment data for android.graphics.Path objects","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Graphics Path","website":"https://developer.android.com/jetpack/androidx/releases/graphics#1.0.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.interpolator:interpolator","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.0.0","description":"The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support Interpolators","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle-Common","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-common-java8","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle-Common for Java 8 Language","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle-Common for Java 8","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-livedata-core","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle LiveData Core","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle LiveData Core","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-process","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle Process","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Process","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Runtime","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime-compose","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Compose integration with Lifecycle","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Runtime Compose","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-runtime-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Kotlin extensions for 'lifecycle' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Kotlin extensions for 'viewmodel' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.lifecycle:lifecycle-viewmodel-savedstate","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"2.8.7","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Lifecycle ViewModel with SavedState","website":"https://developer.android.com/jetpack/androidx/releases/lifecycle#2.8.7","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.profileinstaller:profileinstaller","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.4.1","description":"Allows libraries to prepopulate ahead of time compilation traces to be read by ART","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Profile Installer","website":"https://developer.android.com/jetpack/androidx/releases/profileinstaller#1.4.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.savedstate:savedstate","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.2.1","description":"Android Lifecycle Saved State","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Saved State","website":"https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.savedstate:savedstate-ktx","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.2.1","description":"Kotlin extensions for 'savedstate' artifact","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"SavedState Kotlin Extensions","website":"https://developer.android.com/jetpack/androidx/releases/savedstate#1.2.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.startup:startup-runtime","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.1","description":"Android App Startup Runtime","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android App Startup Runtime","website":"https://developer.android.com/jetpack/androidx/releases/startup#1.1.1","licenses":["Apache-2.0"]},{"uniqueId":"androidx.tracing:tracing","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.2.0","description":"Android Tracing","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Android Tracing","website":"https://developer.android.com/jetpack/androidx/releases/tracing#1.2.0","licenses":["Apache-2.0"]},{"uniqueId":"androidx.vectordrawable:vectordrawable","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"Android Support VectorDrawable","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support VectorDrawable","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.vectordrawable:vectordrawable-animated","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.0","description":"Android Support AnimatedVectorDrawable","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"Support AnimatedVectorDrawable","website":"https://developer.android.com/jetpack/androidx","licenses":["Apache-2.0"]},{"uniqueId":"androidx.versionedparcelable:versionedparcelable","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.1.1","description":"Provides a stable but relatively compact binary serialization format that can be passed across processes or persisted safely.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"http://source.android.com"},"name":"VersionedParcelable","website":"http://developer.android.com/tools/extras/support-library.html","licenses":["Apache-2.0"]},{"uniqueId":"com.caverock:androidsvg-aar","funding":[],"developers":[{"name":"Paul LeBeau"}],"artifactVersion":"1.4","description":"SVG rendering library for Android.","scm":{"connection":"https://github.com/BigBadaboom/androidsvg.git","url":"https://github.com/BigBadaboom/androidsvg","developerConnection":"https://github.com/BigBadaboom/androidsvg.git"},"name":"AndroidSVG","website":"https://github.com/BigBadaboom/androidsvg","licenses":["Apache-2.0"]},{"uniqueId":"com.fasterxml.jackson.core:jackson-annotations","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Core annotations used for value types, used by Jackson data binding package.","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-annotations.git","url":"http://github.com/FasterXML/jackson-annotations","developerConnection":"scm:git:git@github.com:FasterXML/jackson-annotations.git"},"name":"Jackson-annotations","website":"http://github.com/FasterXML/jackson","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-core","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Core Jackson processing abstractions (aka Streaming API), implementation for JSON","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-core.git","url":"http://github.com/FasterXML/jackson-core","developerConnection":"scm:git:git@github.com:FasterXML/jackson-core.git"},"name":"Jackson-core","website":"https://github.com/FasterXML/jackson-core","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.core:jackson-databind","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7.1","description":"General data-binding functionality for Jackson: works on core streaming API","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-databind.git","url":"http://github.com/FasterXML/jackson-databind","developerConnection":"scm:git:git@github.com:FasterXML/jackson-databind.git"},"name":"jackson-databind","website":"http://github.com/FasterXML/jackson","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson.module:jackson-module-kotlin","funding":[],"developers":[{"name":"Drew Stephens"},{"name":"Jayson Minard"},{"name":"Vyacheslav Artemyev"}],"artifactVersion":"2.12.7","description":"Add-on module for Jackson (https://github.com/FasterXML/jackson/) to support\n Kotlin language, specifically introspection of method/constructor parameter names,\n without having to add explicit property name annotation.","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-module-kotlin.git","url":"https://github.com/FasterXML/jackson-module-kotlin","developerConnection":"scm:git:git@github.com:FasterXML/jackson-module-kotlin.git"},"name":"jackson-module-kotlin","website":"https://github.com/FasterXML/jackson-module-kotlin","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.fasterxml.jackson:jackson-bom","funding":[],"developers":[{"name":"Tatu Saloranta"}],"artifactVersion":"2.12.7","description":"Bill of Materials pom for getting full, complete set of compatible versions\nof Jackson components maintained by FasterXML.com","scm":{"connection":"scm:git:git@github.com:FasterXML/jackson-bom.git","url":"https://github.com/FasterXML/jackson-bom","developerConnection":"scm:git:git@github.com:FasterXML/jackson-bom.git"},"name":"Jackson BOM","website":"https://github.com/FasterXML/jackson-bom","licenses":["Apache-2.0"],"organization":{"url":"http://fasterxml.com/","name":"FasterXML"}},{"uniqueId":"com.google.accompanist:accompanist-drawablepainter","funding":[],"developers":[{"name":"Google"}],"artifactVersion":"0.36.0","description":"Utilities for Jetpack Compose","scm":{"connection":"scm:git:git://github.com/google/accompanist.git","url":"https://github.com/google/accompanist/","developerConnection":"scm:git:git://github.com/google/accompanist.git"},"name":"Accompanist Drawable Painter library","website":"https://github.com/google/accompanist/","licenses":["Apache-2.0"]},{"uniqueId":"com.google.guava:listenablefuture","funding":[],"developers":[{"organisationUrl":"http://www.google.com","name":"Kevin Bourrillion"}],"artifactVersion":"1.0","description":"Contains Guava's com.google.common.util.concurrent.ListenableFuture class,\n without any of its other classes -- but is also available in a second\n \"version\" that omits the class to avoid conflicts with the copy in Guava\n itself. The idea is:\n\n - If users want only ListenableFuture, they depend on listenablefuture-1.0.\n\n - If users want all of Guava, they depend on guava, which, as of Guava\n 27.0, depends on\n listenablefuture-9999.0-empty-to-avoid-conflict-with-guava. The 9999.0-...\n version number is enough for some build systems (notably, Gradle) to select\n that empty artifact over the \"real\" listenablefuture-1.0 -- avoiding a\n conflict with the copy of ListenableFuture in guava itself. If users are\n using an older version of Guava or a build system other than Gradle, they\n may see class conflicts. If so, they can solve them by manually excluding\n the listenablefuture artifact or manually forcing their build systems to\n use 9999.0-....","scm":{"connection":"scm:git:https://github.com/google/guava.git/listenablefuture","url":"https://github.com/google/guava/listenablefuture","developerConnection":"scm:git:git@github.com:google/guava.git/listenablefuture"},"name":"Guava ListenableFuture only","website":"https://github.com/google/guava/listenablefuture","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-compose-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.2.0-rc01","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose UI Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-compose-m3","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.2.0-rc01","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose Material 3 Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.2.0-rc01","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Core Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.squareup.okio:okio","funding":[],"developers":[{"name":"Square, Inc."}],"artifactVersion":"3.10.2","description":"A modern I/O library for Android, Java, and Kotlin Multiplatform.","scm":{"connection":"scm:git:git://github.com/square/okio.git","url":"https://github.com/square/okio/","developerConnection":"scm:git:ssh://git@github.com/square/okio.git"},"name":"okio","website":"https://github.com/square/okio/","licenses":["Apache-2.0"]},{"uniqueId":"dev.snipme:highlights","funding":[],"developers":[{"name":"Tomasz K\u0105dzio\u0142ka"}],"artifactVersion":"1.0.0","description":"Kotlin Multiplatform syntax highlighting engine.","scm":{"connection":"scm:git:ssh://git@github.com:SnipMeDev/Highlights.git","url":"https://github.com/SnipMeDev/Highlights","developerConnection":"scm:git:ssh://git@github.org:SnipMeDev/Highlights.git"},"name":"highlights","website":"https://github.com/SnipMeDev/Highlights","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-ktor3","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-ktor3","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-svg","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-svg","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-core","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-darwin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-darwin","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-events","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-events","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http-cio","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http-cio","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-io","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-io","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-network","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-network","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-network-tls","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-network-tls","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-sse","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-sse","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-utils","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-utils","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websocket-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websocket-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websockets","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websockets","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"org.freemarker:freemarker","funding":[],"developers":[],"artifactVersion":"2.3.32","description":"FreeMarker is a \"template engine\"; a generic tool to generate text output based on templates.","scm":{"connection":"scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git","url":"https://git-wip-us.apache.org/repos/asf?p=freemarker.git","developerConnection":"scm:git:https://git-wip-us.apache.org/repos/asf/freemarker.git"},"name":"Apache FreeMarker","website":"https://freemarker.apache.org/","licenses":["Apache-2.0"],"organization":{"url":"http://apache.org","name":"Apache Software Foundation"}},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle-Common","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Compose integration with Lifecycle","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime Compose","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle ViewModel","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Animation engine and animation primitives that are the building blocks of the Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation Core","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.annotation-internal:annotation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.6.11","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Annotation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.collection-internal:collection","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"collections","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.components:components-resources","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Resources for Compose JB","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Resources for Compose JB","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Foundation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation-layout","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose layout implementations","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Layouts","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material3:material3","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Material You Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material3 Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Material Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material-ripple","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Material ripple used to build interactive components","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Ripple","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Tree composition support for code generated by the Compose compiler plugin and corresponding public API","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime-saveable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose components that allow saving and restoring the local ui state","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Saveable","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI primitives","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-backhandler","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Provides BackHandler in Compose Multiplatform projects","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Multiplatform BackHandler","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-geometry","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose classes related to dimensions without units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Geometry","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-graphics","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose graphics","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Graphics","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-text","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Text primitives and utilities","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Text","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-tooling-preview","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose tooling library API. This library provides the API required to declare @Preview composables in user apps.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Preview Tooling","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-uikit","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Internal iOS UIKit utilities including Objective-C library.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UIKit Utils","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-unit","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose classes for simple units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Unit","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-util","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Internal Compose utilities used by other modules","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Util","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:all-modules-page-plugin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-all-modules-page","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:analysis-markdown","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka analysis-markdown-jb","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:dokka-base","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-base","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.dokka:templating-plugin","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"2.0.0","description":"Dokka is an API documentation engine for Kotlin","scm":{"connection":"scm:git:git://github.com/Kotlin/dokka.git","url":"https://github.com/Kotlin/dokka"},"name":"Dokka plugin-templating","website":"https://github.com/Kotlin/dokka","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-dom-api-compat","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.21","description":"Kotlin DOM API compatibility library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Dom Api Compat","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-reflect","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.0.20","description":"Kotlin Full Reflection Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Reflect","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.21","description":"Kotlin Standard Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.21","description":"Kotlin Common Standard Library (legacy, use kotlin-stdlib instead)","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Common","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk7","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Kotlin Standard Library JDK 7 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk7","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-jdk8","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Kotlin Standard Library JDK 8 extension","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Jdk8","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.21","description":"Kotlin Standard Library for JS","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Js","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-wasm-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.21","description":"Kotlin Standard Library for experimental WebAssembly JS platform","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Wasm Js","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlinx-atomicfu-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.10","description":"Runtime library for the Atomicfu compiler plugin","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlinx Atomicfu Runtime","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:atomicfu","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.27.0","description":"AtomicFU utilities","scm":{"url":"https://github.com/Kotlin/kotlinx.atomicfu"},"name":"atomicfu","website":"https://github.com/Kotlin/kotlinx.atomicfu","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-browser","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.3","description":"Kotlinx Browser","scm":{"url":"https://github.com/Kotlin/kotlinx-browser"},"name":"kotlinx-browser","website":"https://github.com/Kotlin/kotlinx-browser","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-collections-immutable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.4.0","description":"Kotlin Immutable Collections multiplatform library","scm":{"url":"https://github.com/Kotlin/kotlinx.collections.immutable"},"name":"kotlinx-collections-immutable","website":"https://github.com/Kotlin/kotlinx.collections.immutable","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-android","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.2","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-android","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.2","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-bom","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.2","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-core","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-slf4j","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.2","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-slf4j","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-datetime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"Kotlin Datetime Library","scm":{"url":"https://github.com/Kotlin/kotlinx-datetime"},"name":"kotlinx-datetime","website":"https://github.com/Kotlin/kotlinx-datetime","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-html-jvm","funding":[],"developers":[{"name":"Sergey Mashkov"},{"name":"Anton Dmitriev"}],"artifactVersion":"0.9.1","description":"A kotlinx.html library provides DSL to build HTML to Writer/Appendable or DOM at JVM and browser (or other JavaScript engine) for better Kotlin programming for Web.","scm":{"connection":"scm:git:git@github.com:Kotlin/kotlinx.html.git","url":"https://github.com/Kotlin/kotlinx.html"},"name":"kotlinx.html","website":"https://github.com/Kotlin/kotlinx.html","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-bytestring","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.7.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-bytestring","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.7.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-core","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-bom","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-bom","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-core","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-json","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-json","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko MPP","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-awt","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko Awt","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko Js","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-js-wasm-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko WASM Runtime","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-wasm-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko WasmJs","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:annotations","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"23.0.0","description":"A set of annotations used for code inspection support and code documentation.","scm":{"connection":"scm:git:git://github.com/JetBrains/java-annotations.git","url":"https://github.com/JetBrains/java-annotations","developerConnection":"scm:git:ssh://github.com:JetBrains/java-annotations.git"},"name":"JetBrains Java Annotations","website":"https://github.com/JetBrains/java-annotations","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:markdown","funding":[],"developers":[{"organisationUrl":"https://jetbrains.com","name":"Valentin Fondaratov"}],"artifactVersion":"0.7.3","description":"Markdown parser in Kotlin","scm":{"connection":"scm:git:git://github.com/JetBrains/markdown.git","url":"https://github.com/JetBrains/markdown"},"name":"markdown","website":"https://github.com/JetBrains/markdown","licenses":["Apache-2.0"]},{"uniqueId":"org.jsoup:jsoup","funding":[],"developers":[{"name":"Jonathan Hedley"}],"artifactVersion":"1.16.1","description":"jsoup is a Java library for working with real-world HTML. It provides a very convenient API for fetching URLs and extracting and manipulating data, using the best of HTML5 DOM methods and CSS selectors. jsoup implements the WHATWG HTML5 specification, and parses HTML to the same DOM as modern browsers do.","scm":{"connection":"scm:git:https://github.com/jhy/jsoup.git","url":"https://github.com/jhy/jsoup"},"name":"jsoup Java HTML Parser","website":"https://jsoup.org/","licenses":["MIT"],"organization":{"url":"https://jhy.io/","name":"Jonathan Hedley"}},{"uniqueId":"org.jspecify:jspecify","funding":[],"developers":[{"name":"Kevin Bourrillion"}],"artifactVersion":"1.0.0","description":"An artifact of well-named and well-specified annotations to power static analysis checks","scm":{"connection":"scm:git:git@github.com:jspecify/jspecify.git","url":"https://github.com/jspecify/jspecify/","developerConnection":"scm:git:git@github.com:jspecify/jspecify.git"},"name":"JSpecify annotations","website":"http://jspecify.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.slf4j:slf4j-api","funding":[],"developers":[{"name":"Ceki Gulcu"}],"artifactVersion":"2.0.16","description":"The slf4j API","scm":{"connection":"scm:git:https://github.com/qos-ch/slf4j.git/slf4j-parent/slf4j-api","url":"https://github.com/qos-ch/slf4j/slf4j-parent/slf4j-api"},"name":"SLF4J API Module","website":"http://www.slf4j.org","licenses":["MIT"],"organization":{"url":"http://www.qos.ch","name":"QOS.ch"}}],"licenses":{"Apache-2.0":{"content":"Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","hash":"Apache-2.0","internalHash":"Apache-2.0","url":"https://spdx.org/licenses/Apache-2.0.html","spdxId":"Apache-2.0","name":"Apache License 2.0"},"MIT":{"content":"MIT License\n\nCopyright (c) \n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","hash":"MIT","internalHash":"MIT","url":"https://spdx.org/licenses/MIT.html","spdxId":"MIT","name":"MIT License"}}} \ No newline at end of file diff --git a/sample/shared/src/commonMain/kotlin/com/mikepenz/markdown/sample/LicensesPage.kt b/sample/shared/src/commonMain/kotlin/com/mikepenz/markdown/sample/LicensesPage.kt index 14de16d..46a4be7 100644 --- a/sample/shared/src/commonMain/kotlin/com/mikepenz/markdown/sample/LicensesPage.kt +++ b/sample/shared/src/commonMain/kotlin/com/mikepenz/markdown/sample/LicensesPage.kt @@ -6,7 +6,6 @@ import androidx.compose.runtime.Composable import androidx.compose.ui.Modifier import com.mikepenz.aboutlibraries.Libs import com.mikepenz.aboutlibraries.ui.compose.m3.LibrariesContainer -import com.mikepenz.markdown.m3.Markdown @Composable internal fun LicensesPage( @@ -18,11 +17,5 @@ internal fun LicensesPage( libraries = libraries, modifier = modifier.fillMaxSize(), contentPadding = contentPadding, - licenseDialogBody = { library -> - val licenseContent = library.licenses.joinToString(separator = "\n\n\n\n") { - it.licenseContent ?: "" - } - Markdown(content = licenseContent) - } ) } diff --git a/sample/web/src/commonMain/composeResources/files/aboutlibraries.json b/sample/web/src/commonMain/composeResources/files/aboutlibraries.json index c4473b8..76e0922 100644 --- a/sample/web/src/commonMain/composeResources/files/aboutlibraries.json +++ b/sample/web/src/commonMain/composeResources/files/aboutlibraries.json @@ -1 +1 @@ -{"libraries":[{"uniqueId":"androidx.annotation:annotation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.9.1","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.collection:collection","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.5.0","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"collections","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.5.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"com.mikepenz:aboutlibraries-compose-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.1.0-rc03","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose UI Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-compose-m3","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.1.0-rc03","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose Material 3 Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.1.0-rc03","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Core Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.squareup.okio:okio","funding":[],"developers":[{"name":"Square, Inc."}],"artifactVersion":"3.10.2","description":"A modern I/O library for Android, Java, and Kotlin Multiplatform.","scm":{"connection":"scm:git:git://github.com/square/okio.git","url":"https://github.com/square/okio/","developerConnection":"scm:git:ssh://git@github.com/square/okio.git"},"name":"okio","website":"https://github.com/square/okio/","licenses":["Apache-2.0"]},{"uniqueId":"dev.snipme:highlights","funding":[],"developers":[{"name":"Tomasz K\u0105dzio\u0142ka"}],"artifactVersion":"1.0.0","description":"Kotlin Multiplatform syntax highlighting engine.","scm":{"connection":"scm:git:ssh://git@github.com:SnipMeDev/Highlights.git","url":"https://github.com/SnipMeDev/Highlights","developerConnection":"scm:git:ssh://git@github.org:SnipMeDev/Highlights.git"},"name":"highlights","website":"https://github.com/SnipMeDev/Highlights","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-ktor3","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-ktor3","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-svg","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-svg","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-core","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-events","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-events","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http-cio","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http-cio","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-io","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-io","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-sse","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-sse","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-utils","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-utils","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websocket-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websocket-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websockets","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.2","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websockets","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle-Common","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Compose integration with Lifecycle","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime Compose","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle ViewModel","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Animation engine and animation primitives that are the building blocks of the Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation Core","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.annotation-internal:annotation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.6.11","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Annotation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.collection-internal:collection","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"collections","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.components:components-resources","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Resources for Compose JB","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Resources for Compose JB","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Foundation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation-layout","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose layout implementations","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Layouts","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material3:material3","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Material You Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material3 Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Material Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material-ripple","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Material ripple used to build interactive components","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Ripple","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Tree composition support for code generated by the Compose compiler plugin and corresponding public API","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime-saveable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose components that allow saving and restoring the local ui state","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Saveable","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI primitives","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-backhandler","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Provides BackHandler in Compose Multiplatform projects","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Multiplatform BackHandler","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-geometry","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose classes related to dimensions without units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Geometry","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-graphics","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose graphics","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Graphics","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-text","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose Text primitives and utilities","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Text","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-unit","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Compose classes for simple units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Unit","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-util","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.0-rc01","description":"Internal Compose utilities used by other modules","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Util","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.20","description":"Kotlin Standard Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-wasm-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.20","description":"Kotlin Standard Library for experimental WebAssembly JS platform","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Wasm Js","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:atomicfu","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.27.0","description":"AtomicFU utilities","scm":{"url":"https://github.com/Kotlin/kotlinx.atomicfu"},"name":"atomicfu","website":"https://github.com/Kotlin/kotlinx.atomicfu","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-browser","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.3","description":"Kotlinx Browser","scm":{"url":"https://github.com/Kotlin/kotlinx-browser"},"name":"kotlinx-browser","website":"https://github.com/Kotlin/kotlinx-browser","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-collections-immutable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.3.8","description":"Kotlin Immutable Collections multiplatform library","scm":{"url":"https://github.com/Kotlin/kotlinx.collections.immutable"},"name":"kotlinx-collections-immutable","website":"https://github.com/Kotlin/kotlinx.collections.immutable","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-core","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-datetime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"Kotlin Datetime Library","scm":{"url":"https://github.com/Kotlin/kotlinx-datetime"},"name":"kotlinx-datetime","website":"https://github.com/Kotlin/kotlinx-datetime","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-bytestring","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-bytestring","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-core","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-core","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-json","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-json","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko MPP","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-js-wasm-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko WASM Runtime","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-wasm-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko WasmJs","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:markdown","funding":[],"developers":[{"organisationUrl":"https://jetbrains.com","name":"Valentin Fondaratov"}],"artifactVersion":"0.7.3","description":"Markdown parser in Kotlin","scm":{"connection":"scm:git:git://github.com/JetBrains/markdown.git","url":"https://github.com/JetBrains/markdown"},"name":"markdown","website":"https://github.com/JetBrains/markdown","licenses":["Apache-2.0"]}],"licenses":{"Apache-2.0":{"content":"Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","hash":"Apache-2.0","internalHash":"Apache-2.0","url":"https://spdx.org/licenses/Apache-2.0.html","spdxId":"Apache-2.0","name":"Apache License 2.0"}}} \ No newline at end of file +{"libraries":[{"uniqueId":"androidx.annotation:annotation","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.9.1","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"Annotation","website":"https://developer.android.com/jetpack/androidx/releases/annotation#1.9.1","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"androidx.collection:collection","funding":[],"developers":[{"name":"The Android Open Source Project"}],"artifactVersion":"1.5.0","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://android.googlesource.com/platform/frameworks/support","url":"https://cs.android.com/androidx/platform/frameworks/support"},"name":"collections","website":"https://developer.android.com/jetpack/androidx/releases/collection#1.5.0","licenses":["Apache-2.0"],"organization":{"name":"The Android Open Source Project"}},{"uniqueId":"com.mikepenz:aboutlibraries-compose-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.2.0-rc01","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose UI Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-compose-m3","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.2.0-rc01","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Compose Material 3 Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.mikepenz:aboutlibraries-core","funding":[],"developers":[{"name":"Mike Penz"}],"artifactVersion":"12.2.0-rc01","description":"AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.","scm":{"connection":"scm:git@github.com:mikepenz/AboutLibraries.git","url":"https://github.com/mikepenz/AboutLibraries","developerConnection":"scm:git@github.com:mikepenz/AboutLibraries.git"},"name":"AboutLibraries Core Library","website":"https://github.com/mikepenz/AboutLibraries","licenses":["Apache-2.0"]},{"uniqueId":"com.squareup.okio:okio","funding":[],"developers":[{"name":"Square, Inc."}],"artifactVersion":"3.10.2","description":"A modern I/O library for Android, Java, and Kotlin Multiplatform.","scm":{"connection":"scm:git:git://github.com/square/okio.git","url":"https://github.com/square/okio/","developerConnection":"scm:git:ssh://git@github.com/square/okio.git"},"name":"okio","website":"https://github.com/square/okio/","licenses":["Apache-2.0"]},{"uniqueId":"dev.snipme:highlights","funding":[],"developers":[{"name":"Tomasz K\u0105dzio\u0142ka"}],"artifactVersion":"1.0.0","description":"Kotlin Multiplatform syntax highlighting engine.","scm":{"connection":"scm:git:ssh://git@github.com:SnipMeDev/Highlights.git","url":"https://github.com/SnipMeDev/Highlights","developerConnection":"scm:git:ssh://git@github.org:SnipMeDev/Highlights.git"},"name":"highlights","website":"https://github.com/SnipMeDev/Highlights","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-compose-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-compose-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-core","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-core","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-network-ktor3","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-network-ktor3","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.coil-kt.coil3:coil-svg","funding":[],"developers":[{"name":"Coil Contributors"}],"artifactVersion":"3.1.0","description":"An image loading library for Android and Compose Multiplatform.","scm":{"connection":"scm:git:git://github.com/coil-kt/coil.git","url":"https://github.com/coil-kt/coil","developerConnection":"scm:git:ssh://git@github.com/coil-kt/coil.git"},"name":"coil-svg","website":"https://github.com/coil-kt/coil","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-client-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-client-core","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-events","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-events","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-http-cio","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-http-cio","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-io","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-io","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-sse","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-sse","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-utils","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-utils","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websocket-serialization","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websocket-serialization","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"io.ktor:ktor-websockets","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Jetbrains Team"}],"artifactVersion":"3.1.3","description":"Ktor is a framework for quickly creating web applications in Kotlin with minimal effort.","scm":{"url":"https://github.com/ktorio/ktor.git"},"name":"ktor-websockets","website":"https://github.com/ktorio/ktor","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-common","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle-Common","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle-Common","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle Runtime","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-runtime-compose","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Compose integration with Lifecycle","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle Runtime Compose","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.androidx.lifecycle:lifecycle-viewmodel","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"2.8.4","description":"Android Lifecycle ViewModel","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Lifecycle ViewModel","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.animation:animation-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Animation engine and animation primitives that are the building blocks of the Compose animation library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Animation Core","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.annotation-internal:annotation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.6.11","description":"Provides source annotations for tooling and readability.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Annotation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.collection-internal:collection","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Standalone efficient collections.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"collections","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.components:components-resources","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Resources for Compose JB","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Resources for Compose JB","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Higher level abstractions of the Compose UI primitives. This library is design system agnostic, providing the high-level building blocks for both application and design-system developers","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Foundation","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.foundation:foundation-layout","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose layout implementations","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Layouts","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material3:material3","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Material You Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material3 Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Material Design Components library","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Components","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.material:material-ripple","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Material ripple used to build interactive components","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Material Ripple","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Tree composition support for code generated by the Compose compiler plugin and corresponding public API","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Runtime","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.runtime:runtime-saveable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose components that allow saving and restoring the local ui state","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Saveable","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose UI primitives. This library contains the primitives that form the Compose UI Toolkit, such as drawing, measurement and layout.","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI primitives","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-backhandler","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Provides BackHandler in Compose Multiplatform projects","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Multiplatform BackHandler","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-geometry","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose classes related to dimensions without units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Geometry","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-graphics","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose graphics","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Graphics","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-text","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose Text primitives and utilities","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose UI Text","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-unit","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Compose classes for simple units","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Unit","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.compose.ui:ui-util","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"1.8.1","description":"Internal Compose utilities used by other modules","scm":{"connection":"scm:git:https://github.com/JetBrains/compose-jb.git","url":"https://github.com/JetBrains/compose-jb","developerConnection":"scm:git:https://github.com/JetBrains/compose-jb.git"},"name":"Compose Util","website":"https://github.com/JetBrains/compose-jb","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.21","description":"Kotlin Standard Library","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlin:kotlin-stdlib-wasm-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Kotlin Team"}],"artifactVersion":"2.1.21","description":"Kotlin Standard Library for experimental WebAssembly JS platform","scm":{"connection":"scm:git:https://github.com/JetBrains/kotlin.git","url":"https://github.com/JetBrains/kotlin","developerConnection":"scm:git:https://github.com/JetBrains/kotlin.git"},"name":"Kotlin Stdlib Wasm Js","website":"https://kotlinlang.org/","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:atomicfu","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.27.0","description":"AtomicFU utilities","scm":{"url":"https://github.com/Kotlin/kotlinx.atomicfu"},"name":"atomicfu","website":"https://github.com/Kotlin/kotlinx.atomicfu","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-browser","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.3","description":"Kotlinx Browser","scm":{"url":"https://github.com/Kotlin/kotlinx-browser"},"name":"kotlinx-browser","website":"https://github.com/Kotlin/kotlinx-browser","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-collections-immutable","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.4.0","description":"Kotlin Immutable Collections multiplatform library","scm":{"url":"https://github.com/Kotlin/kotlinx.collections.immutable"},"name":"kotlinx-collections-immutable","website":"https://github.com/Kotlin/kotlinx.collections.immutable","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-coroutines-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.10.1","description":"Coroutines support libraries for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx.coroutines"},"name":"kotlinx-coroutines-core","website":"https://github.com/Kotlin/kotlinx.coroutines","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-datetime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.6.0","description":"Kotlin Datetime Library","scm":{"url":"https://github.com/Kotlin/kotlinx-datetime"},"name":"kotlinx-datetime","website":"https://github.com/Kotlin/kotlinx-datetime","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-bytestring","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.7.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-bytestring","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-io-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"0.7.0","description":"IO support for Kotlin","scm":{"url":"https://github.com/Kotlin/kotlinx-io"},"name":"kotlinx-io-core","website":"https://github.com/Kotlin/kotlinx-io","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-core","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-core","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.kotlinx:kotlinx-serialization-json","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"JetBrains Team"}],"artifactVersion":"1.8.1","description":"Kotlin multiplatform serialization runtime library","scm":{"url":"https://github.com/Kotlin/kotlinx.serialization"},"name":"kotlinx-serialization-json","website":"https://github.com/Kotlin/kotlinx.serialization","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko MPP","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-js-wasm-runtime","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko WASM Runtime","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains.skiko:skiko-wasm-js","funding":[],"developers":[{"organisationUrl":"https://www.jetbrains.com","name":"Compose Multiplatform Team"}],"artifactVersion":"0.9.4.2","description":"Kotlin Skia bindings","scm":{"connection":"scm:git:https://www.github.com/JetBrains/skiko.git","url":"https://www.github.com/JetBrains/skiko","developerConnection":"scm:git:https://www.github.com/JetBrains/skiko.git"},"name":"Skiko WasmJs","website":"https://www.github.com/JetBrains/skiko","licenses":["Apache-2.0"]},{"uniqueId":"org.jetbrains:markdown","funding":[],"developers":[{"organisationUrl":"https://jetbrains.com","name":"Valentin Fondaratov"}],"artifactVersion":"0.7.3","description":"Markdown parser in Kotlin","scm":{"connection":"scm:git:git://github.com/JetBrains/markdown.git","url":"https://github.com/JetBrains/markdown"},"name":"markdown","website":"https://github.com/JetBrains/markdown","licenses":["Apache-2.0"]}],"licenses":{"Apache-2.0":{"content":"Apache License\nVersion 2.0, January 2004\nhttp://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n\"License\" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.\n\n\"Licensor\" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.\n\n\"Legal Entity\" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, \"control\" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.\n\n\"You\" (or \"Your\") shall mean an individual or Legal Entity exercising permissions granted by this License.\n\n\"Source\" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.\n\n\"Object\" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.\n\n\"Work\" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).\n\n\"Derivative Works\" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.\n\n\"Contribution\" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, \"submitted\" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as \"Not a Contribution.\"\n\n\"Contributor\" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:\n\n (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.\n\n You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\nTo apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets \"[]\" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same \"printed page\" as the copyright notice for easier identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.","hash":"Apache-2.0","internalHash":"Apache-2.0","url":"https://spdx.org/licenses/Apache-2.0.html","spdxId":"Apache-2.0","name":"Apache License 2.0"}}} \ No newline at end of file